summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2024-06-06 17:23:16 -0600
committerAlejandro Soto <alejandro@34project.org>2024-06-06 17:23:16 -0600
commitfd3fe55810ba39afd789c974d5b891b171f8da58 (patch)
tree5d982a44322a28ef73611f5c8d25f39314badbf2
parent2cf3aef018f1a9ed47d66ffa128efecb88158d91 (diff)
home/gpg: update gpg-agent timeouts
Diffstat (limited to '')
-rw-r--r--home/gpg.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/home/gpg.nix b/home/gpg.nix
index 377beb7..ad5fe27 100644
--- a/home/gpg.nix
+++ b/home/gpg.nix
@@ -15,11 +15,11 @@ with lib; {
enableExtraSocket = true;
enableSshSupport = true;
- defaultCacheTtl = 7200;
- defaultCacheTtlSsh = 7200;
+ defaultCacheTtl = 3600 * 3;
+ defaultCacheTtlSsh = 3600 * 3;
- maxCacheTtl = 21600;
- maxCacheTtlSsh = 21600;
+ maxCacheTtl = 3600 * 6;
+ maxCacheTtlSsh = 3600 * 6;
pinentryFlavor = "gtk2";
};