Add enum option type

wip/yesman
Shea Levy 10 years ago
parent e4630c1d41
commit ab2cd34076
  1. 6
      lib/types.nix

@ -194,6 +194,12 @@ rec {
args = { name = ""; }; }).options;
};
enum = values: mkOptionType {
name = "one of ${concatStringsSep ", " values}.";
check = flip elem values;
merge = mergeOneOption;
};
# Obsolete alternative to configOf. It takes its option
# declarations from the ‘options’ attribute of containing option
# declaration.

Loading…
Cancel
Save