nixos-config/shared/gpg.nix

10 lines
164 B
Nix

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