From b31a7597c14189faa8f8da99305b964d3cb86de0 Mon Sep 17 00:00:00 2001 From: sinanmohd Date: Mon, 12 Aug 2024 22:56:20 +0530 Subject: nixosTests/dsl: change option names --- nixos/tests/dsl.nix | 4 ++-- 1 file 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)"; -- cgit v1.2.3