From 23ba623e405d0aa8d554274aacd019d7a015aa9d Mon Sep 17 00:00:00 2001 From: Alexander Kassouni Date: Tue, 14 Jul 2026 22:45:47 -0700 Subject: X11 is so back --- users/kassouni/ssh.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 users/kassouni/ssh.nix (limited to 'users/kassouni/ssh.nix') diff --git a/users/kassouni/ssh.nix b/users/kassouni/ssh.nix new file mode 100644 index 0000000..f496406 --- /dev/null +++ b/users/kassouni/ssh.nix @@ -0,0 +1,13 @@ +{ ... }: let + # onePassPath = "~/Library/Group Containers/2BUA8C4S2C.com.1password/t/agent.sock"; + onePassPath = "~/.1password/agent.sock"; +in { + programs.ssh = { + enable = true; + extraConfig = '' + Host * + IdentityAgent ${onePassPath} + ''; + }; +} + -- cgit v1.3.1