about summary refs log tree commit diff
path: root/modules
diff options
context:
space:
mode:
authordevhell <devhell@mailfresser.de>2019-12-02 21:44:54 +0000
committerdevhell <devhell@mailfresser.de>2019-12-02 21:44:54 +0000
commitff53e8bc5e22c34ce53bbb3297f4b7625e8f8f87 (patch)
tree79c13ec5dd2e003d2de6ed9ce1a7d60388e26253 /modules
parentb0c8dc61594a6dbf78063816b33c89aafe982ed6 (diff)
profiles/base: Explicitly enable gnupg and set pinentry
Right now, I got no way of using Nitrokey. Yay.
Diffstat (limited to 'modules')
-rw-r--r--modules/user/devhell/profiles/base.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/user/devhell/profiles/base.nix b/modules/user/devhell/profiles/base.nix
index 28e18329..05829057 100644
--- a/modules/user/devhell/profiles/base.nix
+++ b/modules/user/devhell/profiles/base.nix
@@ -59,6 +59,10 @@ in {
     };
 
     programs = {
+      gnupg = {
+        agent.enable = true;
+        agent.pinentryFlavor = "gnome3";
+      };
       ssh = {
         startAgent = false;
       };