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`
25 lines
578 B
Nix
25 lines
578 B
Nix
{ config
|
|
, lib
|
|
, ...
|
|
}:
|
|
let
|
|
inherit (config.catppuccin) sources;
|
|
cfg = config.programs.micro.catppuccin;
|
|
enable = cfg.enable && config.programs.micro.enable;
|
|
|
|
themePath = "catppuccin-${cfg.flavour}.micro";
|
|
in
|
|
{
|
|
options.programs.micro.catppuccin =
|
|
lib.ctp.mkCatppuccinOpt "micro";
|
|
|
|
config = lib.mkIf enable {
|
|
assertions = [
|
|
(lib.ctp.assertXdgEnabled "micro")
|
|
];
|
|
|
|
programs.micro.settings.colorscheme = lib.removeSuffix ".micro" themePath;
|
|
|
|
xdg.configFile."micro/colorschemes/${themePath}".source = "${sources.micro}/src/${themePath}";
|
|
};
|
|
}
|