diff --git a/modules/programs/pyradio.nix b/modules/programs/pyradio.nix index e7a88292..c60d7100 100644 --- a/modules/programs/pyradio.nix +++ b/modules/programs/pyradio.nix @@ -117,7 +117,17 @@ in stations: let body = lib.concatMapStringsSep "\n" ( - station: "${escapeCSV station.name},${escapeCSV station.url},,,,,,${toString station.volume}" + station: + lib.concatStringsSep "," [ + (escapeCSV station.name) + (escapeCSV station.url) + "" + "" + "" + "" + "" + (toString station.volume) + ] ) stations; in "${body}\n";