nix-dotfiles/hm/modules/gpg.nix
2025-09-08 11:36:45 +02:00

16 lines
355 B
Nix

{ pkgs, ... }: {
programs.gpg = {
enable = true;
settings = { };
};
services.gpg-agent = {
enable = true;
defaultCacheTtl = 600;
enableBashIntegration = true;
enableZshIntegration = true;
enableNushellIntegration = true;
pinentry.package = pkgs.pinentry-gnome3;
# extraConfig = "allow-loopback-pinentry";
};
}