nix-config/modules/gnupg.nix

19 lines
296 B
Nix
Raw Normal View History

2022-05-25 19:27:42 +02:00
{ 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;
};
}