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 + "; +};