fix module

This commit is contained in:
atagen 2024-12-05 14:12:05 +11:00
parent 3b4d67f96c
commit 9564fedcd5

View File

@ -10,12 +10,12 @@ in {
options.programs.culr = {
enable = mkEnableOption "culr";
pattern = mkOption {
type = with types; either (listOf int) str;
type = with types; nullOr (either (listOf int) str);
default = null;
description = "colourising pattern";
};
palette = mkOption {
type = with types; listOf str;
type = with types; nullOr (listOf str);
default = null;
description = "palette to use in comma separated RGB hex eg. #0f0f0f";
};