19 lines
505 B
Nix
19 lines
505 B
Nix
{ config, lib, ... }:
|
|
let
|
|
inherit (lib) ctp;
|
|
inherit (config.catppuccin) sources;
|
|
cfg = config.programs.lazygit.catppuccin;
|
|
enable = cfg.enable && config.programs.lazygit.enable;
|
|
|
|
themePath = "/${cfg.flavor}/${cfg.accent}.yml";
|
|
in
|
|
{
|
|
options.programs.lazygit.catppuccin = lib.ctp.mkCatppuccinOpt "lazygit" // {
|
|
accent = ctp.mkAccentOpt "lazygit";
|
|
};
|
|
|
|
config = lib.mkIf enable {
|
|
|
|
programs.lazygit.settings = lib.ctp.fromYaml "${sources.lazygit}/themes-mergable/${themePath}";
|
|
};
|
|
}
|