{ config, ... }: let # TODO: mkVHost in { services.nginx.virtualHosts."www.${config.networking.domain}" = { default = true; serverAliases = [config.networking.domain]; quic = true; kTLS = true; forceSSL = true; enableACME = true; locations."/" = { root = "/srv/http/www"; index = "index.html"; tryFiles = "$uri $uri/ $uri.html =404"; }; }; }