configuration.nix/home/services/gpg-agent.nix

10 lines
170 B
Nix
Raw Normal View History

2023-04-07 14:02:53 +05:30
{ ... }: {
gpg-agent = {
enable = true;
enableExtraSocket = true;
enableScDaemon = true;
enableSshSupport = true;
pinentryFlavor = "gnome3";
};
}