nix-config/hosts/modules/alexandria/networking.nix
2025-05-18 18:24:47 -03:00

17 lines
264 B
Nix

{ ... }:
{
networking = {
firewall = {
allowedTCPPorts = [
80 # HTTP
443 # HTTPS
25565 # Minecraft
];
allowedUDPPorts = [
24454 # Minecraft Simple Voice Chat
25565 # Minecraft
];
};
};
}