fix module
This commit is contained in:
parent
3b4d67f96c
commit
9564fedcd5
1 changed files with 2 additions and 2 deletions
|
@ -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";
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue