feat(imv): Remove imv

This commit is contained in:
punkfairie 2024-10-20 10:20:27 -07:00
parent 71a87bbaf4
commit 6cd932a7fa
Signed by: punkfairie
GPG key ID: 01823C057725C266
2 changed files with 0 additions and 14 deletions

View file

@ -13,7 +13,6 @@
./gtk.nix
./helix.nix
./hyprland.nix
./imv.nix
./k9s.nix
./kitty.nix
./kvantum.nix

View file

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