From 6b839dd1bf0f6eea97f73a782678595d8fe9c83c Mon Sep 17 00:00:00 2001 From: Dustin Swan Date: Sat, 3 Jan 2026 22:45:44 -0700 Subject: [PATCH] Reverting this, i want longer timeouts --- home-linux.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/home-linux.nix b/home-linux.nix index 6ef872a..a86b0dc 100644 --- a/home-linux.nix +++ b/home-linux.nix @@ -23,5 +23,15 @@ enable = true; }; + services.gpg-agent = { + enable = true; + enableSshSupport = true; + defaultCacheTtl = 86400; + maxCacheTtl = 86400; + defaultCacheTtlSsh = 86400; + maxCacheTtlSsh = 86400; + pinentry.package = pkgs.pinentry-all; + }; + imports = [ ./home-cli.nix ./home-gui.nix ./home-mail.nix ]; }