4 lines
179 B
Nix
4 lines
179 B
Nix
{ config, pkgs, ... }: {
|
|
networking.firewall.allowedTCPPortRanges = [{ from = 1714; to = 1764; }];
|
|
networking.firewall.allowedUDPPortRanges = [{ from = 1714; to = 1764; }];
|
|
}
|