2024-05-21 21:53:46 +00:00
|
|
|
{ config, lib, ... }:
|
2024-04-29 18:15:58 +00:00
|
|
|
let
|
2024-05-13 20:33:16 +00:00
|
|
|
inherit (config.catppuccin) sources;
|
2024-04-29 18:15:58 +00:00
|
|
|
cfg = config.programs.tofi.catppuccin;
|
|
|
|
enable = cfg.enable && config.programs.tofi.enable;
|
|
|
|
in
|
|
|
|
{
|
2024-06-28 16:29:30 +00:00
|
|
|
options.programs.tofi.catppuccin = lib.ctp.mkCatppuccinOpt { name = "tofi"; };
|
2024-04-29 18:15:58 +00:00
|
|
|
|
|
|
|
config.programs.tofi = lib.mkIf enable {
|
2024-08-07 01:38:36 +00:00
|
|
|
settings.include = sources.tofi + "/themes/catppuccin-${cfg.flavor}";
|
2024-04-29 18:15:58 +00:00
|
|
|
};
|
|
|
|
}
|