nixos/fontconfig: concatStringsSep -> concatMapStrings
Co-authored-by: gabby <GenuineGabriella@gmail.com>
This commit is contained in:
@@ -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}>
|
||||
'';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user