diff options
-rw-r--r-- | etc/guix/home.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/etc/guix/home.scm b/etc/guix/home.scm index 6835efc..10501a1 100644 --- a/etc/guix/home.scm +++ b/etc/guix/home.scm @@ -99,12 +99,13 @@ "gitconfig-extra" "[sendemail]\n smtpserver = " msmtp-non-hardcoded "/bin/msmtpq\n")) +;; 2592000 = 60 * 60 * 24 * 30 (define gpg-agent.conf (mixed-text-file "gpg-agent.conf" #"- default-cache-ttl 172800 default-cache-ttl-ssh 172800 - max-cache-ttl 604800 - max-cache-ttl-ssh 604800 + max-cache-ttl 2592000 + max-cache-ttl-ssh 2592000 enable-ssh-support pinentry-program "# pinentry-gtk2 "/bin/pinentry-gtk-2\n")) |