nix-config/modules/nixos/gnupg.nix
2025-07-17 21:47:19 +01:00

14 lines
214 B
Nix

{ pkgs, ... }:
{
security.pam.services.login.gnupg.enable = true;
programs = {
gnupg.agent = {
enable = true;
enableSSHSupport = true;
pinentryPackage = pkgs.pinentry-qt;
};
};
}