From dc7fdfb7ea809cb10779f67271596f02dc0442c4 Mon Sep 17 00:00:00 2001 From: Katherina Walshe-Grey Date: Wed, 19 Mar 2025 17:17:51 +0000 Subject: [PATCH] gpg: init --- common/default.nix | 3 ++- common/gpg.nix | 8 ++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 common/gpg.nix diff --git a/common/default.nix b/common/default.nix index 81a7423..c60088e 100644 --- a/common/default.nix +++ b/common/default.nix @@ -4,6 +4,7 @@ ./base-server ./users ./boot.nix + ./gpg.nix ./home-manager.nix ./misc.nix ./nginx.nix @@ -14,4 +15,4 @@ ./security.nix ./steam.nix ]; -} \ No newline at end of file +} diff --git a/common/gpg.nix b/common/gpg.nix new file mode 100644 index 0000000..07d1a0f --- /dev/null +++ b/common/gpg.nix @@ -0,0 +1,8 @@ +{ config, lib, pkgs, ... }: + +{ + programs.gnupg.agent = { + enable = true; + enableSSHSupport = true; + }; +}