Files
dotfiles/nix/home/starship/default.nix
2024-07-29 19:27:59 +02:00

28 lines
498 B
Nix

{ ... }:
{
programs.starship = {
enable = true;
enableBashIntegration = true;
enableZshIntegration = true;
enableFishIntegration = true;
settings = {
add_newline = false;
command_timeout = 2000;
battery = {
disabled = true;
display = [
{
threshold = 10;
style = "bold red";
}
{
threshold = 30;
style = "bold yellow";
}
];
};
};
};
}