From f669b425a13f86f0a32899028396394d26b0795e Mon Sep 17 00:00:00 2001 From: Florian RICHER Date: Thu, 17 Jul 2025 15:08:11 +0200 Subject: [PATCH] pro-home: Add yubikey agent --- hosts/pro-home/home.nix | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/hosts/pro-home/home.nix b/hosts/pro-home/home.nix index c2a57be..91ccdc1 100644 --- a/hosts/pro-home/home.nix +++ b/hosts/pro-home/home.nix @@ -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; }; }