From c51e185615bfb79c2971fb8d3a48799c7401a382 Mon Sep 17 00:00:00 2001 From: "Gustavo \"Guz\" L. de Mello" Date: Wed, 10 Apr 2024 15:19:31 -0300 Subject: [PATCH] fix: gpg key cache --- hosts/battleship/configuration.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hosts/battleship/configuration.nix b/hosts/battleship/configuration.nix index d4d8c4f..986883e 100644 --- a/hosts/battleship/configuration.nix +++ b/hosts/battleship/configuration.nix @@ -29,6 +29,9 @@ programs.gnupg.agent = { enable = true; pinentryPackage = pkgs.pinentry-gnome3; + settings = { + default-cache-ttl = 3600 * 24; + }; }; services.flatpak.enable = true;