nix-config/modules/gnupg.nix
2025-06-14 21:01:52 +02:00

13 lines
224 B
Nix

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