diff options
author | Franck Cuny <franck@fcuny.net> | 2024-12-18 09:21:14 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2024-12-18 09:21:14 -0800 |
commit | 9fc1348eff0d18645a7de7197947ce73b5aecaf2 (patch) | |
tree | 7b6f780b20f053c4498f229a6d1dd3b43d7306a7 /nix/users/fcuny | |
parent | use ssh instead of http when working on my repositories (diff) | |
download | world-9fc1348eff0d18645a7de7197947ce73b5aecaf2.tar.gz |
cleanup ssh match blocks
Diffstat (limited to 'nix/users/fcuny')
-rw-r--r-- | nix/users/fcuny/ssh.nix | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/nix/users/fcuny/ssh.nix b/nix/users/fcuny/ssh.nix index 17c2f03..2129650 100644 --- a/nix/users/fcuny/ssh.nix +++ b/nix/users/fcuny/ssh.nix @@ -8,12 +8,6 @@ controlPersist = "30m"; matchBlocks = { - "personal" = { - hostname = "github.com"; - user = "git"; - forwardAgent = false; - extraOptions = { preferredAuthentications = "publickey"; }; - }; "github.com" = { hostname = "github.com"; user = "git"; @@ -33,6 +27,12 @@ forwardAgent = false; extraOptions = { preferredAuthentications = "publickey"; }; }; + "home" = { + hostname = "fcuny.net"; + port = 422; + user = "fcuny"; + extraOptions = { preferredAuthentications = "publickey"; }; + }; }; }; } |