28e6d8a18d
* 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`
21 lines
553 B
Nix
21 lines
553 B
Nix
{ config
|
|
, pkgs
|
|
, lib
|
|
, ...
|
|
}:
|
|
let
|
|
inherit (config.catppuccin) sources;
|
|
cfg = config.programs.zathura.catppuccin;
|
|
enable = cfg.enable && config.programs.zathura.enable;
|
|
themeFile = sources.zathura + /src/catppuccin-${cfg.flavour};
|
|
in
|
|
{
|
|
options.programs.zathura.catppuccin =
|
|
lib.ctp.mkCatppuccinOpt "zathura";
|
|
|
|
config.programs.zathura.options = lib.mkIf enable
|
|
(lib.ctp.fromINI
|
|
(pkgs.runCommand "catppuccin-zathura-theme" { } ''
|
|
${pkgs.gawk}/bin/awk '/.+/ { printf "%s=%s\n", $2, $3 }' ${themeFile} > $out
|
|
''));
|
|
}
|