20 lines
342 B
Nix
20 lines
342 B
Nix
programs.ssh = {
|
|
enable = true;
|
|
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
|
|
";
|
|
};
|