summaryrefslogtreecommitdiff
path: root/users
diff options
context:
space:
mode:
Diffstat (limited to 'users')
-rw-r--r--users/seth/module/programs/eza.nix1
-rw-r--r--users/seth/module/programs/gpg.nix6
2 files changed, 1 insertions, 6 deletions
diff --git a/users/seth/module/programs/eza.nix b/users/seth/module/programs/eza.nix
index 4dc07ee..6280651 100644
--- a/users/seth/module/programs/eza.nix
+++ b/users/seth/module/programs/eza.nix
@@ -12,7 +12,6 @@ in {
config = lib.mkIf cfg.enable {
programs.eza = {
enable = true;
- enableAliases = true;
icons = true;
};
};
diff --git a/users/seth/module/programs/gpg.nix b/users/seth/module/programs/gpg.nix
index b7b03c5..e709180 100644
--- a/users/seth/module/programs/gpg.nix
+++ b/users/seth/module/programs/gpg.nix
@@ -16,11 +16,7 @@ in {
services.gpg-agent = lib.mkIf pkgs.stdenv.isLinux {
enable = true;
-
- pinentryFlavor =
- if osConfig ? programs
- then osConfig.programs.gnupg.agent.pinentryFlavor or "curses"
- else "curses";
+ pinentryPackage = osConfig.programs.gnupg.agent.pinentryPackage or pkgs.pinentry-curses;
};
};
}