From e0de34c07d1b78b81f6c3fbf3aa41f08ef8db7fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Sun, 4 Sep 2022 11:46:37 +0200 Subject: make error message nicer if type is ommitted --- types.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'types.nix') diff --git a/types.nix b/types.nix index e7dcf60..8e4e2a6 100644 --- a/types.nix +++ b/types.nix @@ -10,7 +10,7 @@ rec { subType = typeAttr: mkOptionType rec { name = "subType"; description = "one of ${attrNames typeAttr}"; - check = x: typeAttr.${x.type}.check x; + check = x: if x ? type then typeAttr.${x.type}.check x else throw "No type option set in:\n${generators.toPretty {} x}"; merge = loc: defs: foldl' (res: def: typeAttr.${def.value.type}.merge loc [def]) {} defs; nestedTypes = typeAttr; @@ -780,6 +780,7 @@ rec { type = mkOption { type = types.enum [ "zfs_dataset" ]; default = "zfs_dataset"; + internal = true; }; zfs_type = mkOption { type = types.enum [ "filesystem" "volume" ]; @@ -867,6 +868,7 @@ rec { type = mkOption { type = types.enum [ "mdadm" ]; default = "mdadm"; + internal = true; }; level = mkOption { type = types.int; @@ -914,6 +916,7 @@ rec { options = { type = mkOption { type = types.enum [ "mdraid" ]; + internal = true; }; name = mkOption { @@ -955,6 +958,7 @@ rec { options = { type = mkOption { type = types.enum [ "luks" ]; + internal = true; }; name = mkOption { type = types.str; -- cgit v1.2.3