myNixosFlake/nixos/modules/firewall.nix
2024-10-14 18:43:31 +03:00

7 lines
97 B
Nix

{
networking.firewall = {
allowedTCPPorts = [ 21614 ];
allowedUDPPorts = [ 21614 ];
};
}