nichts/modules/options/style/colors.nix

23 lines
381 B
Nix
Raw Normal View History

2024-09-06 08:38:36 +02:00
{lib, ...}: let
inherit (lib) mkOption;
inherit (lib.types) str;
2024-09-03 21:44:59 +02:00
in {
options.modules.style = {
colorScheme = {
name = mkOption {
2024-09-06 08:38:36 +02:00
type = str;
default = "Catppuccin Mocha";
2024-09-03 21:44:59 +02:00
};
slug = {
2024-09-06 08:38:36 +02:00
type = str;
default = "catppuccin-mocha";
2024-09-03 21:44:59 +02:00
};
variant = {
};
2024-09-06 08:38:36 +02:00
colors =
mkOption {
};
2024-09-03 21:44:59 +02:00
};
};
}