nix-dotfiles/modules/hm/gpg.nix
2023-07-19 10:42:09 +01:00

12 lines
191 B
Nix

{
programs.gpg = {
enable = true;
settings = { };
};
services.gpg-agent = {
enable = true;
defaultCacheTtl = 600;
# extraConfig = "allow-loopback-pinentry";
};
}