8 lines
158 B
Nix
8 lines
158 B
Nix
{ pkgs, ... }:
|
|
{
|
|
networking.firewall = {
|
|
enable = true;
|
|
allowedTCPPorts = [ 22 80 443 3000 3001 8384 ];
|
|
allowedUDPPorts = [ 22 80 443 ];
|
|
};
|
|
}
|