feat(gitui): Remove gitui

This commit is contained in:
punkfairie 2024-10-19 22:03:51 -07:00
parent c202d1e3c8
commit 9e2b868081
Signed by: punkfairie
GPG key ID: 01823C057725C266
2 changed files with 0 additions and 18 deletions

View file

@ -9,7 +9,6 @@
./fish.nix
./foot.nix
./fzf.nix
./gitui.nix
./glamour.nix
./globals.nix
./gtk.nix

View file

@ -1,17 +0,0 @@
{ 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 { name = "gitui"; };
config = lib.mkIf enable {
programs.gitui.theme = builtins.path {
name = "${cfg.flavor}.ron";
path = "${sources.gitui}/themes/catppuccin-${cfg.flavor}.ron";
};
};
}