diff options
| author | Caroline Larimore <caroline@larimo.re> | 2025-04-15 21:27:32 -0700 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2025-04-15 21:27:32 -0700 |
| commit | 3085e2113005f2af736ae3a5ab590977fe55b0f5 (patch) | |
| tree | 5b47c687862f113fdbd8b676107ffe7851adc1c1 | |
| parent | f84ce65404aaa994826904f43557141eaefa5889 (diff) | |
home: fix pinentry
| -rw-r--r-- | modules/home/tools/gpg/default.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/home/tools/gpg/default.nix b/modules/home/tools/gpg/default.nix index 297d9d0..d6f6ed0 100644 --- a/modules/home/tools/gpg/default.nix +++ b/modules/home/tools/gpg/default.nix @@ -15,6 +15,11 @@ in { ]; }; + #NOTE: required for pinentry-gnome3 + home.packages = with pkgs; [ + gcr + ]; + programs.gpg.enable = true; services.gpg-agent = { |