lib/types: Fix type description of bool enum values

Previously bool values would show as <bool>
This commit is contained in:
Silvan Mosberger 2020-10-03 15:15:04 +02:00
parent 1063be86e9
commit de71ca2ebc
No known key found for this signature in database
GPG key ID: E8F1E9EAD284E17D

View file

@ -499,6 +499,7 @@ rec {
show = v:
if builtins.isString v then ''"${v}"''
else if builtins.isInt v then builtins.toString v
else if builtins.isBool v then if v then "true" else "false"
else ''<${builtins.typeOf v}>'';
in
mkOptionType rec {