25 lines
318 B
Nix
25 lines
318 B
Nix
|
{
|
||
|
config,
|
||
|
lib,
|
||
|
...
|
||
|
}: let
|
||
|
inherit (lib) mkOption;
|
||
|
inherit (lib.types) str;
|
||
|
in {
|
||
|
options.modules.style = {
|
||
|
colorScheme = {
|
||
|
name = mkOption {
|
||
|
type = str;
|
||
|
default = "catppuccin-mocha";
|
||
|
};
|
||
|
slug = {
|
||
|
};
|
||
|
variant = {
|
||
|
};
|
||
|
colors = mkOption {
|
||
|
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|