life saving flake bump
typo
This commit is contained in:
parent
3fc9c2e2c8
commit
482adb9551
2 changed files with 10 additions and 10 deletions
|
@ -7,15 +7,15 @@
|
|||
inherit (lib) mkIf mkEnableOption mkOption types;
|
||||
cfg = config.programs.culr;
|
||||
in {
|
||||
options.programs.meat = {
|
||||
options.programs.culr = {
|
||||
enable = mkEnableOption "culr";
|
||||
pattern = mkOption {
|
||||
type = with types; nullOr str;
|
||||
type = with types; either (listOf int) str;
|
||||
default = null;
|
||||
description = "colourising pattern";
|
||||
};
|
||||
palette = mkOption {
|
||||
type = with types; nullOr str;
|
||||
type = with types; 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