Compare commits
3 commits
b9d005821b
...
211f7d40aa
Author | SHA1 | Date | |
---|---|---|---|
211f7d40aa | |||
dc50185e3f | |||
53871bf139 |
5 changed files with 25 additions and 16 deletions
13
flake.nix
13
flake.nix
|
@ -9,11 +9,10 @@
|
|||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
# nixgl.url = "github:nix-community/nixGL";
|
||||
|
||||
rose-pine.url = "git+https://git.punkfairie.net/punkfairie/rose-pine-nix";
|
||||
rose-pine.url = "git+https://codewith.babesonthe.net/punkfairie/rose-pine-nix";
|
||||
|
||||
# Rose pine themes that aren't included in the above flake:
|
||||
# TODO: Integrate these to punkfairie/rose-pine-nix.
|
||||
rose-pine-amfora = {
|
||||
url = "github:rose-pine/amfora";
|
||||
flake = false;
|
||||
|
@ -39,11 +38,9 @@
|
|||
home-manager.lib.homeManagerConfiguration {
|
||||
inherit pkgs;
|
||||
|
||||
extraSpecialArgs = # with inputs;
|
||||
{
|
||||
# inherit nixgl;
|
||||
inherit inputs;
|
||||
};
|
||||
extraSpecialArgs = {
|
||||
inherit inputs;
|
||||
};
|
||||
|
||||
modules = [
|
||||
inputs.rose-pine.homeManagerModules.rose-pine
|
||||
|
|
|
@ -9,11 +9,6 @@
|
|||
|
||||
targets.genericLinux.enable = true;
|
||||
|
||||
# GPU integration.
|
||||
# nixGL.packages = nixgl.packages;
|
||||
# nixGL.defaultWrapper = "nvidia";
|
||||
# nixGL.installScripts = [ "nvidia" ];
|
||||
|
||||
home.language.base = "en_US.UTF-8";
|
||||
|
||||
# Tell nix what version it is.
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
./fzf.nix
|
||||
./gh.nix
|
||||
./git.nix
|
||||
./gpg.nix
|
||||
./hyfetch.nix
|
||||
./just.nix
|
||||
./lazygit.nix
|
||||
|
|
17
home/programs/gpg.nix
Normal file
17
home/programs/gpg.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{ 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,9 +3,8 @@
|
|||
programs.wezterm = {
|
||||
enable = true;
|
||||
|
||||
# Needs to be wrapped with GPU driver libraries on non-NixOS systems.
|
||||
# package = (config.lib.nixGL.wrap pkgs.wezterm);
|
||||
|
||||
# Non-NixOS Linux systems don't have proper GPU integration, so we
|
||||
# unfortunately need to use the native package manager version.
|
||||
package = pkgs.emptyDirectory;
|
||||
|
||||
# TODO: create `local config` & return it seperately, so other modules can
|
||||
|
|
Loading…
Reference in a new issue