{ pkgs, lib, ... }: let inherit (import ) serveHtml; stations = [ 900068204 # A/M 900068302 # KAS 900068203 # B-P ]; fahrplan = pkgs.writeText "fahrplan.html" '' Fahrplan
${lib.concatMapStrings (station: '' '') stations}
''; in { services.nginx = { enable = true; recommendedGzipSettings = true; recommendedOptimisation = true; recommendedProxySettings = true; recommendedTlsSettings = true; }; services.nginx.virtualHosts."bvg.kmein.r" = { locations."/".extraConfig = serveHtml fahrplan pkgs; }; }