e45a44e26e
* feat: add `enable` option globally * chore(modules): use catppuccin.enable in test.nix --------- Co-authored-by: seth <getchoo@tuta.io>
11 lines
256 B
Nix
11 lines
256 B
Nix
{ lib, ... }: {
|
|
options.catppuccin = {
|
|
enable = lib.mkEnableOption "Catppuccin globally";
|
|
|
|
flavour = lib.mkOption {
|
|
type = lib.ctp.types.flavourOption;
|
|
default = "latte";
|
|
description = "Global Catppuccin flavour";
|
|
};
|
|
};
|
|
}
|