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 = {
enable = true;
matchBlocks = {
"localhost" = {
extraOptions.UserKnownHostsFile = "/dev/null";
};
"tux" = {
hostname = "tuxworld.usask.ca";
user = "atl175";
};
"haschel" = {
hostname = "haschel";
user = "fedora";
};
"lloyd" = {
hostname = "lloyd";
user = "truenas_admin";
};
};
extraConfig = "
Host localhost
UserKnownHostsFile /dev/null
Host tux
HostName tuxworld.usask.ca
User atl175
Host haschel
HostName haschel
User fedora
Host lloyd
HostName lloyd
User truenas_admin
";
};
}