lib/generators.toPretty: Only quote attribute names if necessary

This commit is contained in:
Silvan Mosberger
2020-09-17 18:20:08 +02:00
parent f3bf0f173e
commit 0f6231702f
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -227,7 +227,7 @@ rec {
else "{ "
+ libStr.concatStringsSep " " (libAttr.mapAttrsToList
(name: value:
"${toPretty args name} = ${toPretty args value};") v)
"${libStr.escapeNixIdentifier name} = ${toPretty args value};") v)
+ " }"
else if isFunction v then
let fna = lib.functionArgs v;