From 99211c5ba099e702165d6ddef019598a03b7bec3 Mon Sep 17 00:00:00 2001 From: Florian RICHER Date: Wed, 16 Jul 2025 14:30:38 +0200 Subject: [PATCH] pro-home: Add gpg-agent On NixOS, it's already configured with common.nix but not for home only configurations --- hosts/pro-home/home.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/hosts/pro-home/home.nix b/hosts/pro-home/home.nix index f027f41..c2a57be 100644 --- a/hosts/pro-home/home.nix +++ b/hosts/pro-home/home.nix @@ -28,4 +28,11 @@ editors.neovim.enable = true; }; + + services.gpg-agent = { + enable = true; + enableZshIntegration = true; + enableSshSupport = true; + pinentry.package = pkgs.pinentry-qt; + }; }