nix-processmgmt/nixproc/create-image-from-steps/generate-config-from-steps.nix

8 lines
147 B
Nix

{pkgs, common ? {}, input, steps}:
pkgs.lib.foldl (result: moduleFile:
import moduleFile {
inherit pkgs common input result;
}
) {} steps