Opened some firewall ports

This commit is contained in:
Jan-Bulthuis 2025-01-25 20:34:23 +01:00
parent 1e7db857a6
commit 76bc756b3e
1 changed files with 13 additions and 0 deletions

View File

@ -85,6 +85,19 @@ in
networking.useDHCP = true;
nixpkgs.hostPlatform = "x86_64-linux";
networking.firewall.allowedTCPPortRanges = [
{
from = 10000;
to = 11000;
}
];
networking.firewall.allowedUDPPortRanges = [
{
from = 10000;
to = 11000;
}
];
# TODO: Move to USB module
# services.gvfs.enable = true;
services.udisks2.enable = true;