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`
18 lines
375 B
Nix
18 lines
375 B
Nix
{ config
|
|
, lib
|
|
, ...
|
|
}:
|
|
let
|
|
inherit (config.catppuccin) sources;
|
|
|
|
cfg = config.services.dunst.catppuccin;
|
|
enable = cfg.enable && config.services.dunst.enable;
|
|
in
|
|
{
|
|
options.services.dunst.catppuccin =
|
|
lib.ctp.mkCatppuccinOpt "dunst";
|
|
|
|
config.services.dunst = lib.mkIf enable {
|
|
settings = lib.ctp.fromINI (sources.dunst + /themes/${cfg.flavour}.conf);
|
|
};
|
|
}
|