nix-config/modules/nixos/gnupg-agent.nix
2026-04-15 18:26:05 -04:00

9 lines
172 B
Nix

{ pkgs, ... }:
{
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
enableZshIntegration = true;
pinentryPackage = pkgs.pinentry-qt;
};
}