life saving flake bump

typo
This commit is contained in:
atagen 2024-12-05 12:56:28 +11:00
parent 3fc9c2e2c8
commit 482adb9551
2 changed files with 10 additions and 10 deletions

View file

@ -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";
};