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/zed.nix
./home/ghostty.nix ./home/ghostty.nix
./home/syncthing.nix ./home/syncthing.nix
./home/ssh.nix
]; ];
in in
{ {

View File

@@ -3,21 +3,22 @@
{ {
programs.ssh = { 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";
"; };
};
}; };
} }