From dbd91fe53cf515cd5a26cb3112d65836b9cfbf3b Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar Date: Sun, 21 Sep 2025 21:14:47 -0400 Subject: [PATCH] vixen: configure ssh --- configurations/home/srid@vixen.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/configurations/home/srid@vixen.nix b/configurations/home/srid@vixen.nix index 4f86e32..356e0c9 100644 --- a/configurations/home/srid@vixen.nix +++ b/configurations/home/srid@vixen.nix @@ -27,6 +27,25 @@ in # ''; }; + programs.ssh = { + enable = true; + enableDefaultConfig = false; + matchBlocks = { + "*" = { + extraOptions = { + # Configure SSH to use 1Password agent + IdentityAgent = "~/.1password/agent.sock"; + }; + }; + "pureintent" = { + forwardAgent = true; + }; + "sincereintent" = { + forwardAgent = true; + }; + }; + }; + home.username = "srid"; home.stateVersion = "25.05"; }