reNixos/viola/networking/firewall.nix
s0me1newithhand7s c12e1edf28 viola: upstream
Signed-off-by: s0me1newithhand7s <git+me@hand7s.org>
2026-02-08 22:40:24 +03:00

56 lines
687 B
Nix

_: {
networking = {
firewall = {
allowPing = true;
enable = true;
checkReversePath = false;
allowedUDPPorts = [
80
8080
8443
8980
53350
53351
53353
# mc
25565
# mail
24
25
110
143
465
587
993
995
4190
];
allowedTCPPorts = [
80
8080
8443
8980
53350
53351
53353
# mc
25565
# mail
24
25
110
143
465
587
993
995
4190
];
};
};
}