NixFiles/systems/desktop/gpg.nix
2023-03-29 06:58:29 +01:00

10 lines
131 B
Nix

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