Compare commits
No commits in common. "211f7d40aab2376cd8a1a91b47a5ef9e74718d18" and "b9d005821b2da6bb449028b679f068a4c9cde9bf" have entirely different histories.
211f7d40aa
...
b9d005821b
5 changed files with 16 additions and 25 deletions
13
flake.nix
13
flake.nix
|
@ -9,10 +9,11 @@
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
||||||
rose-pine.url = "git+https://codewith.babesonthe.net/punkfairie/rose-pine-nix";
|
# nixgl.url = "github:nix-community/nixGL";
|
||||||
|
|
||||||
|
rose-pine.url = "git+https://git.punkfairie.net/punkfairie/rose-pine-nix";
|
||||||
|
|
||||||
# Rose pine themes that aren't included in the above flake:
|
# Rose pine themes that aren't included in the above flake:
|
||||||
# TODO: Integrate these to punkfairie/rose-pine-nix.
|
|
||||||
rose-pine-amfora = {
|
rose-pine-amfora = {
|
||||||
url = "github:rose-pine/amfora";
|
url = "github:rose-pine/amfora";
|
||||||
flake = false;
|
flake = false;
|
||||||
|
@ -38,9 +39,11 @@
|
||||||
home-manager.lib.homeManagerConfiguration {
|
home-manager.lib.homeManagerConfiguration {
|
||||||
inherit pkgs;
|
inherit pkgs;
|
||||||
|
|
||||||
extraSpecialArgs = {
|
extraSpecialArgs = # with inputs;
|
||||||
inherit inputs;
|
{
|
||||||
};
|
# inherit nixgl;
|
||||||
|
inherit inputs;
|
||||||
|
};
|
||||||
|
|
||||||
modules = [
|
modules = [
|
||||||
inputs.rose-pine.homeManagerModules.rose-pine
|
inputs.rose-pine.homeManagerModules.rose-pine
|
||||||
|
|
|
@ -9,6 +9,11 @@
|
||||||
|
|
||||||
targets.genericLinux.enable = true;
|
targets.genericLinux.enable = true;
|
||||||
|
|
||||||
|
# GPU integration.
|
||||||
|
# nixGL.packages = nixgl.packages;
|
||||||
|
# nixGL.defaultWrapper = "nvidia";
|
||||||
|
# nixGL.installScripts = [ "nvidia" ];
|
||||||
|
|
||||||
home.language.base = "en_US.UTF-8";
|
home.language.base = "en_US.UTF-8";
|
||||||
|
|
||||||
# Tell nix what version it is.
|
# Tell nix what version it is.
|
||||||
|
|
|
@ -12,7 +12,6 @@
|
||||||
./fzf.nix
|
./fzf.nix
|
||||||
./gh.nix
|
./gh.nix
|
||||||
./git.nix
|
./git.nix
|
||||||
./gpg.nix
|
|
||||||
./hyfetch.nix
|
./hyfetch.nix
|
||||||
./just.nix
|
./just.nix
|
||||||
./lazygit.nix
|
./lazygit.nix
|
||||||
|
|
|
@ -1,17 +0,0 @@
|
||||||
{ pkgs, ... }:
|
|
||||||
{
|
|
||||||
programs.gpg = {
|
|
||||||
enable = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
services.gpg-agent = rec {
|
|
||||||
enable = true;
|
|
||||||
|
|
||||||
# TODO: Set this to pinentry-curses on non-GUI systems.
|
|
||||||
pinentryPackage = pkgs.pinentry-gtk2;
|
|
||||||
|
|
||||||
# Don't ask for the password very often.
|
|
||||||
defaultCacheTtl = 60480000;
|
|
||||||
maxCacheTtl = defaultCacheTtl;
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -3,8 +3,9 @@
|
||||||
programs.wezterm = {
|
programs.wezterm = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
# Non-NixOS Linux systems don't have proper GPU integration, so we
|
# Needs to be wrapped with GPU driver libraries on non-NixOS systems.
|
||||||
# unfortunately need to use the native package manager version.
|
# package = (config.lib.nixGL.wrap pkgs.wezterm);
|
||||||
|
|
||||||
package = pkgs.emptyDirectory;
|
package = pkgs.emptyDirectory;
|
||||||
|
|
||||||
# TODO: create `local config` & return it seperately, so other modules can
|
# TODO: create `local config` & return it seperately, so other modules can
|
||||||
|
|
Loading…
Reference in a new issue