1770523020

This commit is contained in:
2026-02-07 20:57:00 -07:00
parent 960a63e48c
commit 480fe8173f

View File

@@ -3,22 +3,21 @@
{ {
programs.ssh = { programs.ssh = {
enable = true; enable = true;
matchBlocks = { extraConfig = "
"localhost" = { Host localhost
extraOptions.UserKnownHostsFile = "/dev/null"; UserKnownHostsFile /dev/null
};
"tux" = { Host tux
hostname = "tuxworld.usask.ca"; HostName tuxworld.usask.ca
user = "atl175"; User atl175
};
"haschel" = { Host haschel
hostname = "haschel"; HostName haschel
user = "fedora"; User fedora
};
"lloyd" = { Host lloyd
hostname = "lloyd"; HostName lloyd
user = "truenas_admin"; User truenas_admin
}; ";
};
}; };
} }