From 4d66adf223243819707d6cbda6a4378529bf8516 Mon Sep 17 00:00:00 2001 From: Ahwx Date: Wed, 17 Jun 2026 13:00:09 +0200 Subject: [PATCH] feat: enable gpg in userland --- modules/home/security.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/modules/home/security.nix b/modules/home/security.nix index e69de29..4d0175d 100644 --- a/modules/home/security.nix +++ b/modules/home/security.nix @@ -0,0 +1,12 @@ +{ + services.gpg-agent = { + enable = true; + enableSshSupport = true; + }; + + programs.gpg = { + enable = true; + mutableKeys = false; + mutableTrust = false; + }; +}