mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-18 15:01:11 +01:00
vivid: change colorMode type to enum
This commit is contained in:
parent
ea53581401
commit
f6e2082edb
1 changed files with 5 additions and 2 deletions
|
|
@ -37,8 +37,11 @@ in
|
||||||
enableFishIntegration = mkFishIntegrationOption { inherit config; };
|
enableFishIntegration = mkFishIntegrationOption { inherit config; };
|
||||||
|
|
||||||
colorMode = mkOption {
|
colorMode = mkOption {
|
||||||
type = with types; nullOr str;
|
type = types.enum [
|
||||||
default = null;
|
"8-bit"
|
||||||
|
"24-bit"
|
||||||
|
];
|
||||||
|
default = "24-bit";
|
||||||
example = "8-bit";
|
example = "8-bit";
|
||||||
description = ''
|
description = ''
|
||||||
Color mode for vivid.
|
Color mode for vivid.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue