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`
23 lines
500 B
Nix
23 lines
500 B
Nix
{ config
|
|
, lib
|
|
, ...
|
|
}:
|
|
let
|
|
inherit (config.catppuccin) sources;
|
|
|
|
cfg = config.programs.rofi.catppuccin;
|
|
enable = cfg.enable && config.programs.rofi.enable;
|
|
in
|
|
{
|
|
options.programs.rofi.catppuccin =
|
|
lib.ctp.mkCatppuccinOpt "rofi";
|
|
|
|
config.programs.rofi = lib.mkIf enable {
|
|
theme = {
|
|
"@theme" = builtins.path {
|
|
name = "catppuccin-${cfg.flavour}.rasi";
|
|
path = "${sources.rofi}/basic/.local/share/rofi/themes/catppuccin-${cfg.flavour}.rasi";
|
|
};
|
|
};
|
|
};
|
|
}
|