feat: add flavour option to nixos module
This commit is contained in:
parent
fa2b78afa3
commit
13e5ba5020
1 changed files with 9 additions and 1 deletions
|
@ -1 +1,9 @@
|
||||||
{ pkgs, lib, ... }: { }
|
{ lib, ... }: {
|
||||||
|
options.catppuccin = {
|
||||||
|
flavour = lib.mkOption {
|
||||||
|
type = lib.types.enum [ "latte" "frappe" "macchiato" "mocha" ];
|
||||||
|
default = "latte";
|
||||||
|
description = "Global Catppuccin flavour";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue