10 lines
151 B
Nix
10 lines
151 B
Nix
{...}: {
|
|
config = {
|
|
programs.gpg.enable = true;
|
|
services.gpg-agent = {
|
|
enable = true;
|
|
maxCacheTtl = 86400; # 1 Day
|
|
};
|
|
};
|
|
}
|