mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy.org.git
synced 2025-02-05 07:50:37 +00:00
docs(en): Fix themes object
This commit is contained in:
parent
64bd5f8cb2
commit
6a8a7986a2
|
@ -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;
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue