configuration.nix/system/programs/gnupg.nix

10 lines
167 B
Nix
Raw Normal View History

2023-04-07 20:36:59 +05:30
{ ... }: {
programs.gnupg.agent = {
enable = true;
enableExtraSocket = true;
enableSSHSupport = true;
pinentryFlavor = "gnome3";
};
}