rose-pine-nix/modules/home-manager/starship.nix

31 lines
766 B
Nix
Raw Normal View History

{ config
, pkgs
, lib
, ...
}:
let
inherit (builtins) fromTOML readFile;
cfg = config.programs.starship.catppuccin;
enable = cfg.enable && config.programs.starship.enable;
in
2023-03-27 17:32:26 -07:00
{
2023-04-17 09:44:07 -07:00
options.programs.starship.catppuccin =
lib.ctp.mkCatppuccinOpt "starship" config;
2023-03-27 17:32:26 -07:00
config.programs.starship.settings =
lib.mkIf enable
({
format = lib.mkDefault "$all";
palette = "catppuccin_${cfg.flavour}";
}
// fromTOML (readFile
(pkgs.fetchFromGitHub
{
owner = "catppuccin";
repo = "starship";
rev = "3e3e54410c3189053f4da7a7043261361a1ed1bc";
sha256 = "sha256-soEBVlq3ULeiZFAdQYMRFuswIIhI9bclIU8WXjxd7oY=";
}
+ "/palettes/${cfg.flavour}.toml")));
2023-03-27 17:32:26 -07:00
}