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