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>
17 lines
429 B
Nix
17 lines
429 B
Nix
{ config, lib, ... }:
|
|
let
|
|
inherit (config.catppuccin) sources;
|
|
|
|
cfg = config.programs.gitui.catppuccin;
|
|
enable = cfg.enable && config.programs.gitui.enable;
|
|
in
|
|
{
|
|
options.programs.gitui.catppuccin = lib.ctp.mkCatppuccinOpt "gitui";
|
|
|
|
config = lib.mkIf enable {
|
|
programs.gitui.theme = builtins.path {
|
|
name = "${cfg.flavor}.ron";
|
|
path = "${sources.gitui}/themes/catppuccin-${cfg.flavor}.ron";
|
|
};
|
|
};
|
|
}
|