configuration.nix/system/programs/gnupg.nix
2023-04-07 20:46:28 +05:30

9 lines
155 B
Nix

{ ... }: {
programs.gnupg.agent = {
enable = true;
enableExtraSocket = true;
enableSSHSupport = true;
pinentryFlavor = "gnome3";
};
}