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