nix/users/gandalf/modules/gnupg.nix

12 lines
204 B
Nix

{ ... }: {
programs.gpg = {
enable = true;
};
services.gpg-agent = {
enable = true;
enableBashIntegration = true;
enableZshIntegration = true;
pinentryFlavor = "gnome3";
};
}