style/colors.nix: init

This commit is contained in:
Charlie Root 2024-09-03 21:44:59 +02:00
commit d9a3be85cb
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{
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 {
};
};
};
}