flake-parts: add builder option

This commit is contained in:
Max 2023-01-31 16:59:23 +01:00
parent e25f6be965
commit 28c5bd5d9f

View File

@ -37,6 +37,14 @@
type = t.str;
};
# TODO make an enum of all available builders?
builder = mkOption {
default = null;
description = ''Name of builder to use'';
example = "strict-builder";
type = t.nullOr t.str;
};
subsystemInfo = mkOption {
default = {};
description = "Translator specific arguments";