{ pkgs, lib, ... }: let stations = [ 900068204 # A/M 900068302 # KAS 900068203 # B-P ]; fahrplanHtml = '' 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 = '' default_type "text/html"; root ${pkgs.linkFarm "fahrplan" [{ name = "index.html"; path = pkgs.writeText "fahrplan.html" fahrplanHtml; }]}; index index.html; ''; }; }