{ pkgs, lib, stations }: let theStations = lib.mapAttrsToList (name: value: value // {name = name;}) stations; in pkgs.writeText "index.html" '' radio.kierán
Welcome to

radio.kierán

${lib.concatMapStringsSep "\n" (station: ''
${station.name} (status, link)

${station.description}


'') theStations }
''