From c2522a1b7afa452ca95ea754adcdad7ef524fc14 Mon Sep 17 00:00:00 2001 From: William Carroll Date: Fri, 13 Mar 2020 12:21:01 +0000 Subject: [PATCH] Extend default-cache-ttl and max-cache-ttl for gpg-agent Preferring eight hours for each of these values. --- configs/.config/nixpkgs/home.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configs/.config/nixpkgs/home.nix b/configs/.config/nixpkgs/home.nix index 1a4d53bd4..51e857b82 100644 --- a/configs/.config/nixpkgs/home.nix +++ b/configs/.config/nixpkgs/home.nix @@ -149,7 +149,7 @@ services.gpg-agent = { enable = true; - defaultCacheTtl = 7200; - maxCacheTtl = 7200; + defaultCacheTtl = 8 * 60 * 60; # 8 hours + maxCacheTtl = 8 * 60 * 60; }; }