3d3db414f3
* chore(modules): update flavor and accent defaults * chore(modules/nixos): update default flavor
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 = "mocha";
|
|
description = "Global Catppuccin flavour";
|
|
};
|
|
};
|
|
}
|