home-manager/modules/gpg.nix

10 lines
151 B
Nix
Raw Normal View History

2023-09-04 20:46:32 +00:00
{...}: {
config = {
programs.gpg.enable = true;
services.gpg-agent = {
enable = true;
maxCacheTtl = 86400; # 1 Day
};
2023-09-04 20:46:32 +00:00
};
}