c3h-nixfiles/hosts/nuc/webserver.nix

10 lines
108 B
Nix
Raw Normal View History

2021-08-21 16:47:21 +00:00
{ ... }:
{
services.nginx = {
enable = true;
};
networking.firewall.allowedTCPPorts = [ 80 ];
}