diff options
author | Franck Cuny <franck@fcuny.net> | 2023-11-06 16:50:13 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2023-11-06 17:05:04 -0800 |
commit | c7587b1e50d0c65c62c4f42a2e22d690560c325c (patch) | |
tree | 8b37be6f19f3289d7a81f7a8c1736cd1eda98a14 /home/profiles/ssh.nix | |
parent | add a script to update local machine (diff) | |
download | world-c7587b1e50d0c65c62c4f42a2e22d690560c325c.tar.gz |
use 1password ssh agent
Enable ssh configuration on darwin.
Diffstat (limited to '')
-rw-r--r-- | home/profiles/ssh.nix | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/home/profiles/ssh.nix b/home/profiles/ssh.nix index 3aa286b..47aee8a 100644 --- a/home/profiles/ssh.nix +++ b/home/profiles/ssh.nix @@ -6,6 +6,9 @@ serverAliveInterval = 60; controlMaster = "auto"; controlPersist = "30m"; + extraConfig = '' + IdentityAgent "~/Library/Group Containers/2BUA8C4S2C.com.1password/t/agent.sock" + ''; matchBlocks = { "github.com" = { hostname = "github.com"; @@ -13,12 +16,6 @@ forwardAgent = false; extraOptions = { preferredAuthentications = "publickey"; }; }; - "rsync.net" = { - hostname = "de2664.rsync.net"; - user = "de2664"; - forwardAgent = false; - extraOptions = { preferredAuthentications = "publickey"; }; - }; }; }; } |