From 40e677ea022d04eca9768c06b54b5ed202bb20a1 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Thu, 27 Nov 2025 15:24:38 +0100 Subject: [PATCH] chore(nix): add TCP port 10400 to Wyoming firewall - Updated `wyoming.nix` to allow traffic on TCP port `10400`. - Ensures compatibility with services requiring this port. --- systems/x86_64-linux/sgx/wyoming.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/systems/x86_64-linux/sgx/wyoming.nix b/systems/x86_64-linux/sgx/wyoming.nix index e379238..30e0f37 100644 --- a/systems/x86_64-linux/sgx/wyoming.nix +++ b/systems/x86_64-linux/sgx/wyoming.nix @@ -25,5 +25,6 @@ networking.firewall.allowedTCPPorts = [ 10200 10300 + 10400 ]; }