From 4402e77b0b1cbd36a91206f8f5872fd1875ce179 Mon Sep 17 00:00:00 2001 From: derped Date: Thu, 10 Jul 2025 22:08:13 +0200 Subject: [PATCH] services: gnupg init. --- services/gnupg.nix | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 services/gnupg.nix diff --git a/services/gnupg.nix b/services/gnupg.nix new file mode 100644 index 0000000..dc6fc8f --- /dev/null +++ b/services/gnupg.nix @@ -0,0 +1,7 @@ +{ lib, config, ... }: + +lib.mkIf (lib.elem "gnupg" config.machine.services) { + programs.gnupg = { + agent.enable = true; + }; +}