nixos/fontconfig: concatStringsSep -> concatMapStrings

Co-authored-by: gabby <GenuineGabriella@gmail.com>
This commit is contained in:
Siren
2026-06-13 16:00:28 -07:00
committed by GitHub
co-authored by gabby
parent fa695d885e
commit 134e32b7c7
+1 -1
View File
@@ -135,7 +135,7 @@ let
key: fonts:
lib.optionalString ((builtins.length fonts) > 0) ''
<${key}>
${lib.concatStringsSep "" (map (font: "<family>${font}</family>") fonts)}
${lib.concatMapStrings (font: "<family>${font}</family>") fonts}
</${key}>
'';