From fc30593e0ab98b0ede4228503047a70865457b71 Mon Sep 17 00:00:00 2001 From: Yorick Barbanneau Date: Tue, 26 Aug 2025 22:41:01 +0200 Subject: [PATCH] chore(work): add gnupg as SSH agent --- hosts/work/home-config.nix | 5 +---- hosts/work/includes/home-manager.nix | 4 ++++ 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/hosts/work/home-config.nix b/hosts/work/home-config.nix index b61215e..d637898 100644 --- a/hosts/work/home-config.nix +++ b/hosts/work/home-config.nix @@ -2,10 +2,7 @@ config.modules = { application = { zathura.enable = true; - foot = { - enable = true; - font-size = "10.5"; - }; + foot.enable = true; }; audio.cmus.enable = true; cli = { diff --git a/hosts/work/includes/home-manager.nix b/hosts/work/includes/home-manager.nix index 5316a17..92fc843 100644 --- a/hosts/work/includes/home-manager.nix +++ b/hosts/work/includes/home-manager.nix @@ -28,4 +28,8 @@ xkb_variant = "altgr-intl"; }; }; + + home.sessionVariables = { + SSH_AUTH_SOCK = ''$XDG_RUNTIME_DIR/gnupg/S.gpg-agent.ssh''; + }; }