2024-05-21 21:53:46 +00:00
|
|
|
{ config, lib, ... }:
|
2024-04-07 09:42:34 +00:00
|
|
|
let
|
2024-05-13 20:33:16 +00:00
|
|
|
inherit (config.catppuccin) sources;
|
2024-04-07 09:42:34 +00:00
|
|
|
cfg = config.programs.imv.catppuccin;
|
|
|
|
enable = cfg.enable && config.programs.imv.enable;
|
|
|
|
in
|
|
|
|
{
|
2024-06-28 16:29:30 +00:00
|
|
|
options.programs.imv.catppuccin = lib.ctp.mkCatppuccinOpt { name = "imv"; };
|
2024-04-07 09:42:34 +00:00
|
|
|
|
2024-05-21 21:53:46 +00:00
|
|
|
config.programs.imv.settings = lib.mkIf enable (
|
2024-05-22 00:23:55 +00:00
|
|
|
lib.ctp.fromINI (sources.imv + "/themes/${cfg.flavor}.config")
|
2024-05-21 21:53:46 +00:00
|
|
|
);
|
2024-04-07 09:42:34 +00:00
|
|
|
}
|