28e6d8a18d
* feat(modules): add `catppuccin.sources` option * refactor(modules)!: nvfetcher -> npins npins gives us a nicer file to import that is a simple name value pair of the port and the path in the store. this allows for easier overriding with the catppuccin.sources option * fix(modules): ensure default sources are applied to `catppuccin.sources`
24 lines
517 B
Nix
24 lines
517 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.flavour}/${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}";
|
|
};
|
|
}
|