19 lines
366 B
Nix
19 lines
366 B
Nix
|
{ config
|
||
|
, lib
|
||
|
, sources
|
||
|
, ...
|
||
|
}:
|
||
|
let
|
||
|
inherit (lib) ctp;
|
||
|
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);
|
||
|
};
|
||
|
}
|