mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +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; };
|
||||
|
||||
colorMode = mkOption {
|
||||
type = with types; nullOr str;
|
||||
default = null;
|
||||
type = types.enum [
|
||||
"8-bit"
|
||||
"24-bit"
|
||||
];
|
||||
default = "24-bit";
|
||||
example = "8-bit";
|
||||
description = ''
|
||||
Color mode for vivid.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue