nixos-config/modules/home/starship/default.nix

31 lines
895 B
Nix
Raw Normal View History

2023-11-06 22:48:30 +01:00
{ inputs, ... }:
{
2023-11-05 11:40:44 +01:00
programs.starship = {
enable = true;
2023-11-06 21:54:14 +01:00
2023-11-06 22:04:45 +01:00
enableBashIntegration = true;
enableZshIntegration = true;
enableNushellIntegration = true;
2023-11-06 21:54:14 +01:00
2023-11-06 22:04:45 +01:00
settings = {
2023-11-06 22:48:30 +01:00
# character = {
# success_symbol = "[](bold green)";
# error_symbol = "[](bold red)";
# };
# character = {
# success_symbol = "[󰊠 ](bold #cba6f7)[󰊠 ](bold #f2cdcd)[󰊠 ](bold #b4befe)[ ](bold #a6e3a1)";
# error_symbol = "[󰊠 ](bold #cba6f7)[󰊠 ](bold #f2cdcd)[󰊠 ](bold #b4befe)[ ](bold #f38ba8)";
# };
directory.substitutions = {
"Documents" = " ";
"Downloads" = " ";
"Music" = " ";
"Pictures" = " ";
"~" = "󰋞 ";
2023-11-06 21:54:14 +01:00
};
2023-11-06 22:48:30 +01:00
2023-11-06 22:04:45 +01:00
palette = "catppuccin_mocha";
} // builtins.fromTOML (builtins.readFile "${inputs.catppuccin-starship}/palettes/mocha.toml");
2023-11-05 11:40:44 +01:00
};
2023-11-06 22:04:45 +01:00
}