docs(en): Fix themes object

This commit is contained in:
Inex Code 2024-12-30 16:34:29 +03:00
parent 64bd5f8cb2
commit 6a8a7986a2
No known key found for this signature in database

View file

@ -209,7 +209,7 @@ in
type = "string";
weight = 2;
};
};
};themes
defaultTheme = (lib.mkOption {
default = "auto";
type = lib.types.enum [
@ -221,7 +221,11 @@ in
}) // {
meta = {
type = "enum";
options = themes;
options = [
"auto"
"light"
"dark"
];
weight = 3;
};
};