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`
28 lines
591 B
Nix
28 lines
591 B
Nix
{ config
|
|
, lib
|
|
, ...
|
|
}:
|
|
let
|
|
inherit (config.catppuccin) sources;
|
|
cfg = config.programs.btop.catppuccin;
|
|
enable = cfg.enable && config.programs.btop.enable;
|
|
|
|
themeFile = "catppuccin_${cfg.flavour}.theme";
|
|
themePath = "/themes/${themeFile}";
|
|
theme = sources.btop + themePath;
|
|
in
|
|
{
|
|
options.programs.btop.catppuccin =
|
|
lib.ctp.mkCatppuccinOpt "btop";
|
|
|
|
config = lib.mkIf enable
|
|
{
|
|
assertions = [
|
|
(lib.ctp.assertXdgEnabled "btop")
|
|
];
|
|
|
|
xdg.configFile."btop${themePath}".source = theme;
|
|
|
|
programs.btop.settings.color_theme = themeFile;
|
|
};
|
|
}
|