From 750812f7c48f0b435322553e01dc6cb34707ce69 Mon Sep 17 00:00:00 2001 From: macronova Date: Sun, 14 Dec 2025 17:57:15 -0800 Subject: [PATCH] Fix singularity --- linux/singularity/network.nix | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/linux/singularity/network.nix b/linux/singularity/network.nix index 0682fd8..2d023df 100644 --- a/linux/singularity/network.nix +++ b/linux/singularity/network.nix @@ -1,15 +1,6 @@ {config, ...}: { networking = { - firewall = with config.constants.port; { - allowedTCPPorts = [coturn coturn-tls http https]; - allowedUDPPorts = [coturn coturn-tls]; - allowedUDPPortRanges = [ - { - from = coturn-relay-udp-min; - to = coturn-relay-udp-max; - } - ]; - }; + firewall.allowedTCPPorts = with config.constants.port; [http https]; hostId = "2cadb253"; nftables.enable = true; };