From 6ac27127fdc12841e0ce62fcd8f51244149c6bd9 Mon Sep 17 00:00:00 2001 From: willemml Date: Sat, 11 Nov 2023 03:41:08 -0800 Subject: [PATCH] Fixes ssh hostname configs --- home/programs/ssh.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/home/programs/ssh.nix b/home/programs/ssh.nix index ba422cc..8dd675f 100644 --- a/home/programs/ssh.nix +++ b/home/programs/ssh.nix @@ -13,26 +13,26 @@ matchBlocks = { "zeus" = { - host = "10.1.2.16"; + hostname = "10.1.2.16"; user = "willem"; }; "nixbox" = { - host = "10.1.2.175"; + hostname = "10.1.2.175"; user = "willem"; }; "ubc" = { - host = "remote.students.cs.ubc.ca"; + hostname = "remote.students.cs.ubc.ca"; user = "willemml"; }; "*.students.cs.ubc.ca" = { user = "willemml"; }; "github.com" = { - host = "ssh.github.com"; + hostname = "ssh.github.com"; port = 443; }; "orlia-nas" = { - host = "192.168.1.251"; + hostname = "192.168.1.251"; user = "willem"; }; };