diff options
Diffstat (limited to 'nixos/tests/dsl.nix')
-rw-r--r-- | nixos/tests/dsl.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/tests/dsl.nix b/nixos/tests/dsl.nix index daadd35..341207c 100644 --- a/nixos/tests/dsl.nix +++ b/nixos/tests/dsl.nix @@ -18,12 +18,12 @@ let default = name; }; options.request = lib.mkEnableOption "Whether to mark the node for building"; - options.needed = lib.mkOption { + options.assertNeeded = lib.mkOption { type = with lib.types; nullOr bool; default = null; description = "Whether the node must be built to satisfy all requests (either a requested node or a transitive dependency)"; }; - options.chosen = lib.mkOption { + options.assertChosen = lib.mkOption { type = with lib.types; nullOr bool; default = null; description = "Whether the node is included in the build plan (i.t. it's `needed` and fitted into budget)"; |