13 lines
263 B
Nix
13 lines
263 B
Nix
{ lib, ... }: {
|
|
imports = [
|
|
./grub.nix
|
|
];
|
|
|
|
options.catppuccin = {
|
|
flavour = lib.mkOption {
|
|
type = lib.types.enum [ "latte" "frappe" "macchiato" "mocha" ];
|
|
default = "latte";
|
|
description = "Global Catppuccin flavour";
|
|
};
|
|
};
|
|
}
|