programs/distrobox: add description for Distrobox config value

This is why the custom manual cannot be built.
This commit is contained in:
Gabriel Arazas 2023-11-23 22:14:10 +08:00
parent 57e3957d98
commit c1f7eda12c
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC

View File

@ -22,14 +22,16 @@ let
distroboxConf = { }: { distroboxConf = { }: {
type = with lib.types; type = with lib.types;
let let
valueType = oneOf [ valueType = (oneOf [
bool bool
float float
int int
path path
str str
(listOf valueType) (listOf valueType)
]; ]) // {
description = "Distrobox settings value";
};
in in
attrsOf valueType; attrsOf valueType;