From ff3e9ef40d7e2962e663e0df72a32204a26232b7 Mon Sep 17 00:00:00 2001 From: Atridad Lahiji Date: Sat, 7 Feb 2026 17:21:10 -0700 Subject: [PATCH] 1770510070 --- modules/home/ssh.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 modules/home/ssh.nix diff --git a/modules/home/ssh.nix b/modules/home/ssh.nix new file mode 100644 index 0000000..71c62df --- /dev/null +++ b/modules/home/ssh.nix @@ -0,0 +1,18 @@ +programs.ssh = { + 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 + "; +};