nichts/modules/options/style/colors.nix
2024-09-06 08:38:36 +02:00

22 lines
381 B
Nix

{lib, ...}: let
inherit (lib) mkOption;
inherit (lib.types) str;
in {
options.modules.style = {
colorScheme = {
name = mkOption {
type = str;
default = "Catppuccin Mocha";
};
slug = {
type = str;
default = "catppuccin-mocha";
};
variant = {
};
colors =
mkOption {
};
};
};
}