2023-03-28 17:57:15 -07:00
|
|
|
{ lib, ... }: {
|
2023-04-16 13:11:09 -07:00
|
|
|
imports = [
|
|
|
|
./grub.nix
|
|
|
|
];
|
|
|
|
|
2023-03-28 17:57:15 -07:00
|
|
|
options.catppuccin = {
|
|
|
|
flavour = lib.mkOption {
|
|
|
|
type = lib.types.enum [ "latte" "frappe" "macchiato" "mocha" ];
|
|
|
|
default = "latte";
|
|
|
|
description = "Global Catppuccin flavour";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|