From ed50c2cbd7c1545bffd0b2733da7819496980ba8 Mon Sep 17 00:00:00 2001 From: punkfairie Date: Sun, 20 Oct 2024 13:13:40 -0700 Subject: [PATCH] feat(tofi): Remove Tofi --- .sources/sources.json | 13 ------------- modules/home-manager/all-modules.nix | 1 - modules/home-manager/tofi.nix | 13 ------------- 3 files changed, 27 deletions(-) delete mode 100644 modules/home-manager/tofi.nix diff --git a/.sources/sources.json b/.sources/sources.json index 70c9ff0..647aea9 100644 --- a/.sources/sources.json +++ b/.sources/sources.json @@ -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 } - diff --git a/modules/home-manager/all-modules.nix b/modules/home-manager/all-modules.nix index 62646eb..3191a75 100644 --- a/modules/home-manager/all-modules.nix +++ b/modules/home-manager/all-modules.nix @@ -24,7 +24,6 @@ ./swaylock.nix ./sway.nix ./tmux.nix - ./tofi.nix ./obs-studio.nix ./waybar.nix ./yazi.nix diff --git a/modules/home-manager/tofi.nix b/modules/home-manager/tofi.nix deleted file mode 100644 index 3995061..0000000 --- a/modules/home-manager/tofi.nix +++ /dev/null @@ -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}"; - }; -}