mirror of
https://mau.dev/andreijiroh-dev/dotfiles.git
synced 2025-02-23 13:42:05 +00:00
27 lines
463 B
Nix
27 lines
463 B
Nix
|
{ ... }:
|
||
|
|
||
|
{
|
||
|
# Open ports in the firewall.
|
||
|
networking.firewall.allowedTCPPortRanges = [
|
||
|
{ from = 1714; to = 1764; }
|
||
|
];
|
||
|
networking.firewall.allowedUDPPortRanges = [
|
||
|
{ from = 1714; to = 1764; }
|
||
|
];
|
||
|
networking.firewall.allowTCPPorts = [
|
||
|
22
|
||
|
80
|
||
|
443
|
||
|
3000
|
||
|
8000
|
||
|
];
|
||
|
networking.firewall.allowUDPPorts = [
|
||
|
22
|
||
|
80
|
||
|
443
|
||
|
3000
|
||
|
8000
|
||
|
];
|
||
|
# Or disable the firewall altogether.
|
||
|
# networking.firewall.enable = false;
|
||
|
}
|