rose-pine-nix/modules/home-manager/mpv.nix
seth 28e6d8a18d
feat(modules): add catppuccin.sources option (#129)
* feat(modules): add `catppuccin.sources` option

* refactor(modules)!: nvfetcher -> npins

npins gives us a nicer file to import that is a simple name value pair
of the port and the path in the store. this allows for easier overriding
with the catppuccin.sources option

* fix(modules): ensure default sources are applied to `catppuccin.sources`
2024-05-13 16:33:16 -04:00

22 lines
595 B
Nix

{ config
, lib
, ...
}:
let
inherit (config.catppuccin) sources;
cfg = config.programs.mpv.catppuccin;
enable = cfg.enable && config.programs.mpv.enable;
themeDir = sources.mpv + /themes/${cfg.flavour}/${cfg.accent};
in
{
options.programs.mpv.catppuccin =
lib.ctp.mkCatppuccinOpt "mpv" // {
accent = lib.ctp.mkAccentOpt "mpv";
};
# Note that the theme is defined across multiple files
config.programs.mpv = lib.mkIf enable {
config = lib.ctp.fromINI (themeDir + "/mpv.conf");
scriptOpts.stats = lib.ctp.fromINI (themeDir + "/script-opts/stats.conf");
};
}