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`
17 lines
481 B
Nix
17 lines
481 B
Nix
{ config
|
|
, lib
|
|
, ...
|
|
}:
|
|
let
|
|
inherit (config.catppuccin) sources;
|
|
cfg = config.programs.gh-dash.catppuccin;
|
|
enable = cfg.enable && config.programs.gh-dash.enable;
|
|
theme = "${sources.gh-dash}/themes/${cfg.flavour}/catppuccin-${cfg.flavour}-${cfg.accent}.yml";
|
|
in
|
|
{
|
|
options.programs.gh-dash.catppuccin = lib.ctp.mkCatppuccinOpt "gh-dash" // {
|
|
accent = lib.ctp.mkAccentOpt "gh-dash";
|
|
};
|
|
|
|
config.programs.gh-dash.settings = lib.mkIf enable (lib.ctp.fromYaml theme);
|
|
}
|