From c7135043b89a7fcfd8e1191e215279b3e48e861e Mon Sep 17 00:00:00 2001 From: Don Harper Date: Wed, 13 Mar 2024 22:33:17 -0500 Subject: [PATCH] home | add gpg-agent and a few other bits and bobs --- home/common/default.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/home/common/default.nix b/home/common/default.nix index 4d0c398..73d519e 100644 --- a/home/common/default.nix +++ b/home/common/default.nix @@ -87,5 +87,18 @@ syncthing = { tray.enable = true; }; + gpg-agent = { + enable = true; + defaultCacheTtl = 1800; + enableSshSupport = true; + }; + }; + programs.go.enable = true; + programs.keychain = { + enable = true; + enableBashIntegration = true; + agents = "ssh"; + keys = "id_aur id_dsa id_ed25519 id_rsa 56913AD86A18257132AA9F03928BC0B78C1BF5AA"; + inheritType = "any"; }; }