8 lines
138 B
Nix
8 lines
138 B
Nix
|
{ lib, pkgs, config, ... }:
|
||
|
{
|
||
|
networking = {
|
||
|
# firewall.enable = false;
|
||
|
firewall.interfaces.allowedTCPPorts = [ 80 443 ];
|
||
|
};
|
||
|
}
|