diff options
author | Soispha <soispha@vhack.eu> | 2023-06-16 07:58:37 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-06-16 08:04:18 +0200 |
commit | 02635f7f4c28bdf66f105cce37f202a92ef3540e (patch) | |
tree | 7e84eb300c1c82137d0edd29f32b0cebdb4f92f7 | |
parent | Build(treewide): Update (diff) | |
download | nixos-config-02635f7f4c28bdf66f105cce37f202a92ef3540e.tar.gz nixos-config-02635f7f4c28bdf66f105cce37f202a92ef3540e.zip |
Fix(hm/conf/gpg): Enable pinentry
-rw-r--r-- | home-manager/config/gpg/default.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/home-manager/config/gpg/default.nix b/home-manager/config/gpg/default.nix index feba1298..7250f1d5 100644 --- a/home-manager/config/gpg/default.nix +++ b/home-manager/config/gpg/default.nix @@ -36,6 +36,12 @@ in { } ]; }; + services.gpg-agent = { + enable = true; + enableZshIntegration = true; + enableScDaemon = true; # smartcards and such things + pinentryFlavor = "tty"; + }; } # vim: ts=2 |