nix-config/modules/gnupg.nix

16 lines
257 B
Nix
Raw Normal View History

2025-01-26 14:16:47 +01:00
{ pkgs, ... }:
2024-12-31 13:52:57 +00:00
{
environment.systemPackages = with pkgs; [
gnupg
opensc
yubikey-personalization-gui
];
# smartcard support
services.pcscd.enable = false;
hardware.gpgSmartcards.enable = true;
2025-01-09 22:38:28 +01:00
programs.gnupg.agent.enable = true;
2024-12-31 13:52:57 +00:00
}