diff --git a/.sources/sources.json b/.sources/sources.json index c2d154e..0a2a58a 100644 --- a/.sources/sources.json +++ b/.sources/sources.json @@ -288,18 +288,6 @@ "url": "https://github.com/d2718nis/rose-pine-dunst/archive/496499eaed38a07ce4f79ec91baaf6e1e4c28bc5.tar.gz", "hash": "0x7cqbcn7zygab9xbmbarz06wxkj3wxxffwmka33ljhm8gk3x0ay" }, - "skim": { - "type": "Git", - "repository": { - "type": "GitHub", - "owner": "catppuccin", - "repo": "skim" - }, - "branch": "main", - "revision": "d39304b5f84721788b19bc40aebcfd7720208d8a", - "url": "https://github.com/catppuccin/skim/archive/d39304b5f84721788b19bc40aebcfd7720208d8a.tar.gz", - "hash": "1b6cd1wfkprrn7imgf1w1f9a6iqy3bql2ansy7l0k44ps1gwrvxq" - }, "spotify-player": { "type": "Git", "repository": { @@ -434,4 +422,5 @@ } }, "version": 3 -} \ No newline at end of file +} + diff --git a/modules/home-manager/all-modules.nix b/modules/home-manager/all-modules.nix index e4129b0..b5141b7 100644 --- a/modules/home-manager/all-modules.nix +++ b/modules/home-manager/all-modules.nix @@ -20,7 +20,6 @@ ./polybar.nix ./rio.nix ./rofi.nix - ./skim.nix ./spotify-player.nix ./starship.nix ./swaylock.nix diff --git a/modules/home-manager/skim.nix b/modules/home-manager/skim.nix deleted file mode 100644 index 9eda30f..0000000 --- a/modules/home-manager/skim.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ config, lib, ... }: -let - inherit (config.catppuccin) sources; - cfg = config.programs.skim.catppuccin; - enable = cfg.enable && config.programs.skim.enable; - palette = (lib.importJSON "${sources.palette}/palette.json").${cfg.flavor}.colors; -in -{ - options.programs.skim.catppuccin = lib.ctp.mkCatppuccinOpt { name = "skim"; }; - - config.programs.skim = lib.mkIf enable { - defaultOptions = [ - "--color=fg:${palette.text.hex},bg:${palette.base.hex},matched:${palette.surface0.hex},matched_bg:${palette.flamingo.hex},current:${palette.text.hex},current_bg:${palette.surface1.hex},current_match:${palette.base.hex},current_match_bg:${palette.rosewater.hex},spinner:${palette.green.hex},info:${palette.mauve.hex},prompt:${palette.blue.hex},cursor:${palette.red.hex},selected:${palette.maroon.hex},header:${palette.teal.hex},border:${palette.overlay0.hex}" - ]; - }; -}