dotfiles/nixos/gsconnect.nix

19 lines
233 B
Nix
Raw Normal View History

2022-12-19 09:09:08 +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
}