From a513690004a27b4330d810def3b37772e5e6e8b2 Mon Sep 17 00:00:00 2001 From: KokaKiwi Date: Wed, 15 May 2024 11:50:49 +0200 Subject: cluster(prod): Add dathomir site and onion node --- cluster/prod/node/onion.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 cluster/prod/node/onion.nix (limited to 'cluster/prod/node/onion.nix') diff --git a/cluster/prod/node/onion.nix b/cluster/prod/node/onion.nix new file mode 100644 index 0000000..0e3c719 --- /dev/null +++ b/cluster/prod/node/onion.nix @@ -0,0 +1,10 @@ +{ ... }: +{ + boot.loader.systemd-boot.enable = true; + boot.loader.timeout = 20; + boot.loader.efi.canTouchEfiVariables = true; + + deuxfleurs.hostName = "onion"; + deuxfleurs.staticIPv4.address = "192.168.1.34"; + deuxfleurs.staticIPv6.address = "2a01:e0a:5e4:1d0:223:24ff:feb0:e866"; +} -- cgit v1.2.3 From 37a2f781eb3e094fbf96741878dc2414958de793 Mon Sep 17 00:00:00 2001 From: KokaKiwi Date: Sun, 26 May 2024 23:00:39 +0200 Subject: prod(cluster/dathomir): Open more SSH ports --- cluster/prod/node/onion.nix | 2 ++ 1 file changed, 2 insertions(+) (limited to 'cluster/prod/node/onion.nix') diff --git a/cluster/prod/node/onion.nix b/cluster/prod/node/onion.nix index 0e3c719..8b6f8d6 100644 --- a/cluster/prod/node/onion.nix +++ b/cluster/prod/node/onion.nix @@ -4,6 +4,8 @@ boot.loader.timeout = 20; boot.loader.efi.canTouchEfiVariables = true; + services.openssh.ports = [ 22 33601 ]; + deuxfleurs.hostName = "onion"; deuxfleurs.staticIPv4.address = "192.168.1.34"; deuxfleurs.staticIPv6.address = "2a01:e0a:5e4:1d0:223:24ff:feb0:e866"; -- cgit v1.2.3