nix-config/modules/gnupg.nix
2025-01-26 14:16:47 +01:00

15 lines
257 B
Nix

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