c3h-nixfiles/shared-services/webserver.nix
Your Name a52133cec4 wip
2021-10-22 22:58:56 +02:00

9 lines
108 B
Nix

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