diff options
author | sinanmohd <sinan@sinanmohd.com> | 2024-08-12 22:56:20 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2024-08-12 22:56:20 +0530 |
commit | b31a7597c14189faa8f8da99305b964d3cb86de0 (patch) | |
tree | b6939c312f80198b66ed05b71ee9bf8b6415ef29 /nixos | |
parent | f09e70de5cfb853081ff97f676376871935bd956 (diff) |
nixosTests/dsl: change option names
Diffstat (limited to 'nixos')
-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)"; |