1770523227

This commit is contained in:
2026-02-07 21:00:27 -07:00
parent 480fe8173f
commit c6dd3ccfb8
2 changed files with 19 additions and 17 deletions

View File

@@ -12,6 +12,7 @@ let
./home/zed.nix
./home/ghostty.nix
./home/syncthing.nix
./home/ssh.nix
];
in
{

View File

@@ -2,22 +2,23 @@
{
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
";
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";
};
};
};
}