diff options
author | Soispha <soispha@vhack.eu> | 2023-06-17 09:25:57 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-06-17 09:52:39 +0200 |
commit | 63fccc6b3c21ce685e9a3e82c8f3bd31bc513dd5 (patch) | |
tree | 870b8d0c1e2bb154cd716974a4ca67f770d66d67 | |
parent | Fix(system/services/nix): Use nixStable as unstable is broken right now (diff) | |
download | nixos-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.nix | 2 |
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"; |