mirror of
https://github.com/nix-community/disko
synced 2024-11-10 06:14:14 +00:00
fix(#101): description for type handles string correctly
This commit is contained in:
parent
df3a607ad7
commit
5cf27f814c
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ rec {
|
|||
# uses the field "type" to find the correct type in the attrset
|
||||
subType = typeAttr: mkOptionType rec {
|
||||
name = "subType";
|
||||
description = "one of ${attrNames typeAttr}";
|
||||
description = "one of ${concatStringsSep "," (attrNames typeAttr)}";
|
||||
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;
|
||||
|
|
Loading…
Reference in a new issue