diff --git a/hosts/pluto/configuration.nix b/hosts/pluto/configuration.nix index ef10c71..6f5846b 100644 --- a/hosts/pluto/configuration.nix +++ b/hosts/pluto/configuration.nix @@ -102,6 +102,16 @@ # Open ports in the firewall. networking.firewall.allowedTCPPorts = [80 443 6969 2022]; + networking.firewall.allowedTCPPortRanges = [ + { + from = 25565; + to = 25575; + } + { + from = 24454; + to = 24464; + } + ]; networking.firewall.allowedUDPPorts = [80 443 6969 2022]; # Or disable the firewall altogether. # networking.firewall.enable = false; diff --git a/hosts/pluto/services/pterodactyl.nix b/hosts/pluto/services/pterodactyl.nix index 4288e11..9d6dcd7 100644 --- a/hosts/pluto/services/pterodactyl.nix +++ b/hosts/pluto/services/pterodactyl.nix @@ -43,7 +43,6 @@ in { }; }; - systemd.services."wings" = { after = ["docker.service"]; requires = ["docker.service"];