about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-06-17 09:25:57 +0200
committerSoispha <soispha@vhack.eu>2023-06-17 09:52:39 +0200
commit63fccc6b3c21ce685e9a3e82c8f3bd31bc513dd5 (patch)
tree870b8d0c1e2bb154cd716974a4ca67f770d66d67
parentFix(system/services/nix): Use nixStable as unstable is broken right now (diff)
downloadnixos-config-63fccc6b3c21ce685e9a3e82c8f3bd31bc513dd5.tar.gz
nixos-config-63fccc6b3c21ce685e9a3e82c8f3bd31bc513dd5.zip
Fix(hm/conf/gpg): Disable agent as it does not work
Diffstat (limited to '')
-rw-r--r--home-manager/config/gpg/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/home-manager/config/gpg/default.nix b/home-manager/config/gpg/default.nix
index 7250f1d5..75bbd3ac 100644
--- a/home-manager/config/gpg/default.nix
+++ b/home-manager/config/gpg/default.nix
@@ -37,7 +37,7 @@ in {
     ];
   };
   services.gpg-agent = {
-    enable = true;
+    enable = false;
     enableZshIntegration = true;
     enableScDaemon = true; # smartcards and such things
     pinentryFlavor = "tty";