Changed time how long the agent should retain passwords.

This commit is contained in:
Kristian Krsnik 2023-09-05 20:03:03 +02:00
parent 2dc5b77471
commit 6eb397d3f4
No known key found for this signature in database
GPG Key ID: A618BA9FBDF8681C

View File

@ -1,6 +1,9 @@
{...}: {
config = {
programs.gpg.enable = true;
services.gpg-agent.enable = true;
services.gpg-agent = {
enable = true;
maxCacheTtl = 86400; # 1 Day
};
};
}