nix-config/modules/gnupg.nix

18 lines
278 B
Nix
Raw Normal View History

2024-12-31 13:52:57 +00:00
{ 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;
};
}