dotfiles/nixos/gsconnect.nix

11 lines
199 B
Nix
Raw Normal View History

2022-03-10 12:25:23 +00:00
{ config, pkgs, ... }: {
networking.firewall.allowedTCPPortRanges = [{
from = 1716;
to = 1764;
}];
networking.firewall.allowedUDPPortRanges = [{
from = 1716;
to = 1764;
}];
2019-12-10 18:16:45 +00:00
}