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

20 lines
643 B
Nix
Raw Normal View History

2023-03-27 17:32:26 -07:00
{ config, pkgs, lib, ... }:
let cfg = config.programs.starship.catppuccin; in
{
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 cfg.enable
({
format = lib.mkDefault "$all";
palette = "catppuccin_${cfg.flavour}";
} // builtins.fromTOML (builtins.readFile
(pkgs.fetchFromGitHub
{
owner = "catppuccin";
repo = "starship";
rev = "3e3e54410c3189053f4da7a7043261361a1ed1bc";
sha256 = "sha256-soEBVlq3ULeiZFAdQYMRFuswIIhI9bclIU8WXjxd7oY=";
} + /palettes/${cfg.flavour}.toml)));
}