dotfiles/nixos/gsconnect.nix

6 lines
179 B
Nix
Raw Normal View History

2019-04-21 10:18:35 +01:00
{ config, pkgs, ... }:
{
2021-11-22 19:32:26 +00:00
networking.firewall.allowedTCPPortRanges = [{ from = 1716; to = 1764; }];
networking.firewall.allowedUDPPortRanges = [{ from = 1716; to = 1764; }];
2019-12-10 18:16:45 +00:00
}