nixos-config/shared/gpg.nix

9 lines
133 B
Nix

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