iyzsong@outlook.com schreef op za 12-03-2022 om 10:22 [+0800]: > +(define (serialize-git-option-value value) > +  (cond > +   ((string? value) (with-output-to-string (lambda () (write value)))) Does git follow the same escaping rules as Guile? > +   ((integer? value) (number->string value)) > +   ((boolean? value) (if value "true" "false")))) This (and more generally, the home-git-service-type) needs to be documented in the manual. Greetings, Maxime.