NixFiles/system/gpg.nix
2023-03-09 08:33:38 +00:00

10 lines
131 B
Nix

{ config, ... }:
{
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
pinentryFlavor = "gtk2";
};
}