home-mpv-configuration: Fix mpv/list-of-file.

* gnu/home/services/mpv.scm (serialize-mpv/list-of-file): Use : as delimiter.

Reported-by: Sergey Trofimov <sarg@sarg.org.ru>
Change-Id: I7e55b306104c235d165ab138397b767f1af5c124
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Tomas Volf 2025-05-27 14:48:32 +02:00 committed by Ludovic Courtès
parent cd1c1d25b6
commit 8ecf0d07f5
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -227,7 +227,7 @@
(define (serialize-mpv/list-of-file field-name lst)
#~(string-append #$(symbol->string field-name)
"="
(string-join '#$lst ",")
(string-join '#$lst ":")
"\n"))
(define (mpv/list-of-file? lst)
(every mpv/file? lst))