summaryrefslogtreecommitdiff
path: root/users/seth/module
diff options
context:
space:
mode:
authorseth <[email protected]>2024-03-15 05:17:38 -0400
committergithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2024-03-15 09:36:49 +0000
commitd79cd6938d91fabd0aa9ac98f9dc6728e34687a5 (patch)
tree946b383f20622394fc0bec48d540593b288e8e6b /users/seth/module
parent890d65dd911d41d03412699d87ddb6d478538e36 (diff)
seth: fixup removed options
Diffstat (limited to 'users/seth/module')
-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;
};
};
}