5 lines
185 B
Nix
5 lines
185 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
networking.firewall.allowedTCPPortRanges = [ { from = 1716; to = 1764; } ];
|
|
networking.firewall.allowedUDPPortRanges = [ { from = 1716; to = 1764; } ];
|
|
}
|