c3h-nixfiles/hosts/nuc/webserver.nix
2021-08-21 18:57:02 +02:00

9 lines
108 B
Nix

{ ... }:
{
services.nginx = {
enable = true;
};
networking.firewall.allowedTCPPorts = [ 80 ];
}