style/colors.nix: init
This commit is contained in:
parent
31cb4aac81
commit
d9a3be85cb
2 changed files with 24 additions and 0 deletions
24
modules/options/style/colors.nix
Normal file
24
modules/options/style/colors.nix
Normal 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 {
|
||||
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
0
modules/style/colors.nix
Normal file
0
modules/style/colors.nix
Normal file
Loading…
Add table
Add a link
Reference in a new issue