From a257358790a0517bd0ac5edb04f4b62a0357898a Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Wed, 4 Mar 2026 19:30:28 +0100 Subject: [PATCH 1/2] srv-core: Make lighthouse via port forwarding --- hosts/srv-core/default.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/hosts/srv-core/default.nix b/hosts/srv-core/default.nix index 7645421..6275247 100644 --- a/hosts/srv-core/default.nix +++ b/hosts/srv-core/default.nix @@ -12,7 +12,14 @@ boot.loader.grub.enable = true; networking = { - overlay.address = "10.254.250.6"; + overlay = { + address = "10.254.250.6"; + isLighthouse = true; + advertise = { + address = "130.83.103.62"; + port = "47033"; + }; + }; underlay = { interface = "enp2s0"; cidr = "192.168.0.64/24"; From ef17aad9d160f5f765e09ce5f715db538c8f08dc Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Wed, 4 Mar 2026 19:33:22 +0100 Subject: [PATCH 2/2] srv-core: Fix port type --- hosts/srv-core/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/srv-core/default.nix b/hosts/srv-core/default.nix index 6275247..6e44d94 100644 --- a/hosts/srv-core/default.nix +++ b/hosts/srv-core/default.nix @@ -17,7 +17,7 @@ isLighthouse = true; advertise = { address = "130.83.103.62"; - port = "47033"; + port = 47033; }; }; underlay = {