nix-config/modules/gnupg.nix
2022-05-25 19:27:42 +02:00

18 lines
296 B
Nix

{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
gnupg
opensc
yubioath-desktop
];
# smartcard support
services.pcscd.enable = false;
hardware.gpgSmartcards.enable = true;
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
}