dotfiles/nixos/gsconnect.nix
Cyryl Płotnicki 3d6dd759c4 nixfmt
2022-03-10 12:25:23 +00:00

11 lines
199 B
Nix

{ config, pkgs, ... }: {
networking.firewall.allowedTCPPortRanges = [{
from = 1716;
to = 1764;
}];
networking.firewall.allowedUDPPortRanges = [{
from = 1716;
to = 1764;
}];
}