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`
19 lines
453 B
Nix
19 lines
453 B
Nix
{ config
|
|
, lib
|
|
, ...
|
|
}:
|
|
let
|
|
inherit (config.catppuccin) sources;
|
|
cfg = config.wayland.windowManager.sway.catppuccin;
|
|
enable = cfg.enable && config.wayland.windowManager.sway.enable;
|
|
theme = "${sources.sway}/themes/catppuccin-${cfg.flavour}";
|
|
in
|
|
{
|
|
options.wayland.windowManager.sway.catppuccin =
|
|
lib.ctp.mkCatppuccinOpt "sway";
|
|
|
|
config.wayland.windowManager.sway.extraConfigEarly =
|
|
lib.mkIf enable ''
|
|
include ${theme}
|
|
'';
|
|
}
|