From c2e9df37713ea381118a4fe66f3a59fa678b8434 Mon Sep 17 00:00:00 2001 From: EinEtwas Date: Sun, 27 Oct 2024 00:42:09 +0200 Subject: [PATCH] feat: enable gnupg --- modules/utils/auth.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/utils/auth.nix b/modules/utils/auth.nix index 39b0003..083b3c1 100644 --- a/modules/utils/auth.nix +++ b/modules/utils/auth.nix @@ -32,4 +32,10 @@ }; }; }; + + programs.gnupg.agent = { + enable = true; + enableSSHSupport = true; + pinentryPackage = pkgs.pinentry-gnome3; + }; }