flake/home/gpg.nix
2025-07-26 01:39:08 +03:00

12 lines
206 B
Nix

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