mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 12:15:29 +00:00
28 lines
498 B
Nix
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";
|
|
}
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|