feat(tofi): Remove Tofi

This commit is contained in:
punkfairie 2024-10-20 13:13:40 -07:00
parent 9947d603d0
commit ed50c2cbd7
Signed by: punkfairie
GPG key ID: 01823C057725C266
3 changed files with 0 additions and 27 deletions

View file

@ -360,18 +360,6 @@
"url": "https://github.com/rose-pine/tm-theme/archive/c4235f9a65fd180ac0f5e4396e3a86e21a0884ec.tar.gz",
"hash": "19k0r1mrhqhlf1xfzvd1q8ihpic86f84kbmgy0m314w3w9cbqf4f"
},
"tofi": {
"type": "Git",
"repository": {
"type": "GitHub",
"owner": "catppuccin",
"repo": "tofi"
},
"branch": "main",
"revision": "d6106461867c077a5e1d25236e02b7be7c83839e",
"url": "https://github.com/catppuccin/tofi/archive/d6106461867c077a5e1d25236e02b7be7c83839e.tar.gz",
"hash": "0hfa7jmr83h5m89mv5bzmd0wnq7819g5433wnj2ahyw2kg8yvfxs"
},
"waybar": {
"type": "Git",
"repository": {
@ -423,4 +411,3 @@
},
"version": 3
}

View file

@ -24,7 +24,6 @@
./swaylock.nix
./sway.nix
./tmux.nix
./tofi.nix
./obs-studio.nix
./waybar.nix
./yazi.nix

View file

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