nix-config/hosts/modules/alexandria/networking.nix

16 lines
224 B
Nix

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