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 = { }: {
type = with lib.types;
let
valueType = oneOf [
valueType = (oneOf [
bool
float
int
path
str
(listOf valueType)
];
]) // {
description = "Distrobox settings value";
};
in
attrsOf valueType;