try an anonymous function for namespacing...

...no local yet
This commit is contained in:
phaer 2023-01-14 22:38:22 +01:00
parent ad6ab7df50
commit 21e31af678

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"]}
function { # ${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";
};