reNixos/s0mePC-nix/networking/firewall.nix
2025-04-27 12:47:02 +03:00

18 lines
343 B
Nix

{...}: {
networking = {
firewall = {
allowPing = true;
enable = true;
checkReversePath = false;
allowedUDPPorts = [
9993
2080
];
allowedTCPPorts = [
9993
2080
];
};
};
}