From 8c12d7db633cc421cd96690d077461cf45195334 Mon Sep 17 00:00:00 2001 From: sadbeast Date: Thu, 30 May 2024 00:47:47 +0000 Subject: oh no what have i done --- home/sadbeast/features/ssh.nix | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 home/sadbeast/features/ssh.nix (limited to 'home/sadbeast/features/ssh.nix') diff --git a/home/sadbeast/features/ssh.nix b/home/sadbeast/features/ssh.nix new file mode 100644 index 0000000..d6ee92c --- /dev/null +++ b/home/sadbeast/features/ssh.nix @@ -0,0 +1,32 @@ +{ + programs.ssh = { + enable = true; + + matchBlocks = { + "falken" = { + hostname = "sadbeast.com"; + port = 6973; + }; + + "crystalpalace" = { + hostname = "192.168.0.2"; + port = 6973; + }; + + "joshua" = { + hostname = "192.168.0.3"; + }; + + "teamdraft" = { + hostname = "teamdraft.net"; + port = 6973; + }; + + "work" = { + hostname = "192.168.0.26"; + forwardX11 = true; + forwardX11Trusted = true; + }; + }; + }; +} -- cgit v1.2.3