flake/home/gpg.nix
2025-07-26 11:47:07 +03:00

13 lines
251 B
Nix

{
services.gpg-agent = {
enable = true;
enableFishIntegration = true;
enableSshSupport = true;
extraConfig = ''
allow-loopback-pinentry
'';
pinentry.program = "pinentry-wayprompt";
};
programs.gpg.enable = true;
}