1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-18 06:51:10 +01:00

vivid: change colorMode type to enum

This commit is contained in:
Mirza Arnaut 2025-10-21 17:18:53 +02:00
parent ea53581401
commit f6e2082edb

View file

@ -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.