nixos-config/shared/gpg.nix

9 lines
133 B
Nix
Raw Normal View History

2022-12-29 20:48:40 +01:00
{ config, ... }:
{
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
services.pcscd.enable = true;
}