nix-config/modules/gnupg.nix

19 lines
307 B
Nix
Raw Normal View History

2022-05-25 19:27:42 +02:00
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
gnupg
opensc
2022-12-16 21:24:03 +01:00
yubikey-personalization-gui
2022-05-25 19:27:42 +02:00
];
# smartcard support
services.pcscd.enable = false;
hardware.gpgSmartcards.enable = true;
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
}