1770522968
This commit is contained in:
@@ -1,19 +1,24 @@
|
|||||||
|
{ settings, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
programs.ssh = {
|
programs.ssh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
extraConfig = "
|
matchBlocks = {
|
||||||
Host localhost
|
"localhost" = {
|
||||||
UserKnownHostsFile /dev/null
|
extraOptions.UserKnownHostsFile = "/dev/null";
|
||||||
|
|
||||||
Host tux
|
|
||||||
HostName tuxworld.usask.ca
|
|
||||||
User atl175
|
|
||||||
|
|
||||||
Host haschel
|
|
||||||
HostName haschel
|
|
||||||
User fedora
|
|
||||||
|
|
||||||
Host lloyd
|
|
||||||
HostName lloyd
|
|
||||||
User truenas_admin
|
|
||||||
";
|
|
||||||
};
|
};
|
||||||
|
"tux" = {
|
||||||
|
hostname = "tuxworld.usask.ca";
|
||||||
|
user = "atl175";
|
||||||
|
};
|
||||||
|
"haschel" = {
|
||||||
|
hostname = "haschel";
|
||||||
|
user = "fedora";
|
||||||
|
};
|
||||||
|
"lloyd" = {
|
||||||
|
hostname = "lloyd";
|
||||||
|
user = "truenas_admin";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user