Revert "replace subshell by code block..."

This reverts commit 9628475f870cafc470dd7ad7b829b60f1b649861.
This commit is contained in:
phaer 2023-01-15 12:51:23 +01:00
parent 63eca64653
commit 10e1037ad7

View File

@ -159,12 +159,12 @@ rec {
test = lib.optionalString (config ? name) "${config.${name}}";
in
''
{ # ${config.type} ${concatMapStringsSep " " (n: toString (config.${n} or "")) ["name" "device" "format" "mountpoint"]}
( # ${config.type} ${concatMapStringsSep " " (n: toString (config.${n} or "")) ["name" "device" "format" "mountpoint"]}
${diskoLib.defineHookVariables { inherit config options; }}
${config.preCreateHook}
${attrs.default args}
${config.postCreateHook}
}
)
'';
description = "Creation script";
};