1770522968

This commit is contained in:
2026-02-07 20:56:08 -07:00
parent 4dfee51548
commit 960a63e48c

View File

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