2023-04-17 09:44:07 -07:00
|
|
|
{ config, pkgs, lib, ... }: let
|
|
|
|
extendedLib = import ../lib/mkExtLib.nix lib;
|
|
|
|
in {
|
|
|
|
imports = let
|
|
|
|
files = [
|
|
|
|
./grub.nix
|
|
|
|
];
|
|
|
|
in
|
|
|
|
extendedLib.ctp.mapModules config pkgs extendedLib files;
|
2023-04-16 13:11:09 -07:00
|
|
|
|
2023-04-17 09:44:07 -07:00
|
|
|
|
|
|
|
options.catppuccin = with extendedLib; {
|
|
|
|
flavour = mkOption {
|
|
|
|
type = ctp.types.flavourOption;
|
2023-03-28 17:57:15 -07:00
|
|
|
default = "latte";
|
|
|
|
description = "Global Catppuccin flavour";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|