Changed time how long the agent should retain passwords.

This commit is contained in:
2023-09-05 20:03:03 +02:00
parent 2dc5b77471
commit 6eb397d3f4

View File

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