pro-home: Add gpg-agent

On NixOS, it's already configured with common.nix but not for home only
configurations
This commit is contained in:
Florian RICHER 2025-07-16 14:30:38 +02:00
parent 46c9f41705
commit 99211c5ba0
Signed by: florian.richer
GPG key ID: C73D37CBED7BFC77

View file

@ -28,4 +28,11 @@
editors.neovim.enable = true;
};
services.gpg-agent = {
enable = true;
enableZshIntegration = true;
enableSshSupport = true;
pinentry.package = pkgs.pinentry-qt;
};
}