2024-05-21 21:53:46 +00:00
|
|
|
{ config, lib, ... }:
|
2023-07-13 16:17:51 +00:00
|
|
|
let
|
|
|
|
inherit (lib) ctp;
|
|
|
|
cfg = config.programs.kitty.catppuccin;
|
|
|
|
enable = cfg.enable && config.programs.kitty.enable;
|
2024-09-21 20:28:29 +00:00
|
|
|
|
|
|
|
# TODO: Remove after 24.11 is stable
|
|
|
|
# https://github.com/nix-community/home-manager/pull/5750
|
|
|
|
attrName = if (lib.versionAtLeast ctp.getModuleRelease "24.11") then "themeFile" else "theme";
|
2023-07-13 16:17:51 +00:00
|
|
|
in
|
|
|
|
{
|
2024-06-28 16:29:30 +00:00
|
|
|
options.programs.kitty.catppuccin = ctp.mkCatppuccinOpt { name = "kitty"; };
|
2023-04-15 23:46:20 +00:00
|
|
|
|
2024-09-21 20:28:29 +00:00
|
|
|
config = lib.mkIf enable { programs.kitty.${attrName} = "Catppuccin-${ctp.mkUpper cfg.flavor}"; };
|
2023-04-15 23:46:20 +00:00
|
|
|
}
|