nix-config/modules/gnupg.nix
2025-01-09 18:37:46 +01:00

17 lines
278 B
Nix

{ config, 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;
};
}