6 lines
145 B
Nix
6 lines
145 B
Nix
{ config, lib, ... }: lib.mkIf config.services.nginx.enable {
|
|
# services.nginx = {
|
|
|
|
# };
|
|
networking.firewall.allowedTCPPorts = [ 80 443 ];
|
|
} |