nix-dotfiles/home_manager/modules/gpg.nix

14 lines
180 B
Nix

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