diff options
| -rw-r--r-- | home/default.nix | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/home/default.nix b/home/default.nix index 5ab72f9..9caad94 100644 --- a/home/default.nix +++ b/home/default.nix @@ -28,10 +28,16 @@ } ''; - ssh.matchBlocks."git.aristote.fr" = { - host = "git.aristote.fr"; - hostname = lib.mkForce "hephaistos.local"; - proxyJump = lib.mkForce null; + ssh.matchBlocks = { + "git.aristote.fr" = { + hostname = lib.mkForce "hephaistos.local"; + proxyJump = lib.mkForce null; + }; + "ds411.aristote.fr" = { + hostname = "ds411.aristote.mesh"; + user = "quentin"; + proxyJump = "hermes.aristote.fr"; + }; }; }; } |
