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`
21 lines
520 B
Nix
21 lines
520 B
Nix
{ config
|
|
, lib
|
|
, ...
|
|
}:
|
|
let
|
|
inherit (config.catppuccin) sources;
|
|
cfg = config.programs.starship.catppuccin;
|
|
enable = cfg.enable && config.programs.starship.enable;
|
|
in
|
|
{
|
|
options.programs.starship.catppuccin =
|
|
lib.ctp.mkCatppuccinOpt "starship";
|
|
|
|
config.programs.starship.settings =
|
|
lib.mkIf enable
|
|
({
|
|
format = lib.mkDefault "$all";
|
|
palette = "catppuccin_${cfg.flavour}";
|
|
}
|
|
// builtins.fromTOML (builtins.readFile "${sources.starship}/palettes/${cfg.flavour}.toml"));
|
|
}
|