feat(fuzzel): Remove Fuzzel

This commit is contained in:
punkfairie 2024-10-19 20:49:16 -07:00
parent 2e5fabb018
commit 04dc34f1db
Signed by: punkfairie
GPG key ID: 01823C057725C266
2 changed files with 0 additions and 15 deletions

View file

@ -8,7 +8,6 @@
./fcitx5.nix
./fish.nix
./foot.nix
./fuzzel.nix
./fzf.nix
./gh-dash.nix
./gitui.nix

View file

@ -1,14 +0,0 @@
{ config, lib, ... }:
let
inherit (config.catppuccin) sources;
cfg = config.programs.fuzzel.catppuccin;
in
{
options.programs.fuzzel.catppuccin = lib.ctp.mkCatppuccinOpt { name = "fuzzel"; } // {
accent = lib.ctp.mkAccentOpt "fuzzel";
};
config = lib.mkIf cfg.enable {
programs.fuzzel.settings.main.include = sources.fuzzel + "/themes/${cfg.flavor}/${cfg.accent}.ini";
};
}