pro-home: Add yubikey agent
All checks were successful
check / check (push) Successful in 37s

This commit is contained in:
Florian RICHER 2025-07-17 15:08:11 +02:00
parent ffc57fd1e3
commit f669b425a1
Signed by: florian.richer
GPG key ID: C73D37CBED7BFC77

View file

@ -29,10 +29,14 @@
editors.neovim.enable = true;
};
services.gpg-agent = {
enable = true;
enableZshIntegration = true;
enableSshSupport = true;
pinentry.package = pkgs.pinentry-qt;
services = {
gpg-agent = {
enable = true;
enableZshIntegration = true;
enableSshSupport = true;
pinentry.package = pkgs.pinentry-qt;
};
yubikey-agent.enable = true;
};
}