Revert "try an anonymous function for namespacing..."

This reverts commit 6390d835025eb36a81bd2b97dcd1a5746e07ebfe.
This commit is contained in:
phaer 2023-01-14 22:43:07 +01:00
parent 21e31af678
commit 32f3730777

View File

@ -159,12 +159,12 @@ rec {
test = lib.optionalString (config ? name) "${config.${name}}";
in
''
function { # ${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";
};