c4dac42a4f
* chore: update ports Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> * chore(modules): update file paths --------- Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: getchoo <48872998+getchoo@users.noreply.github.com> Co-authored-by: seth <getchoo@tuta.io>
18 lines
503 B
Nix
18 lines
503 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}";
|
|
};
|
|
}
|