NixFiles/system/gpg.nix

10 lines
131 B
Nix
Raw Normal View History

2023-03-09 08:33:38 +00:00
{ config, ... }:
{
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
pinentryFlavor = "gtk2";
};
}