nix-dotfiles/modules/gpg.nix
2021-05-13 15:53:09 +02:00

14 lines
180 B
Nix

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