111 lines
2.8 KiB
Nix
111 lines
2.8 KiB
Nix
|
{...}: {
|
||
|
programs.starship = {
|
||
|
enable = true;
|
||
|
enableTransience = true;
|
||
|
settings = {
|
||
|
add_newline = false;
|
||
|
c = {symbol = " ";};
|
||
|
character = {
|
||
|
success_symbol = "[ ](bold green)";
|
||
|
error_symbol = "[ ](bold red)";
|
||
|
};
|
||
|
command_timeout = 2000;
|
||
|
container = {symbol = " ";};
|
||
|
directory = {
|
||
|
truncation_length = 2;
|
||
|
fish_style_pwd_dir_length = 1;
|
||
|
truncate_to_repo = false;
|
||
|
};
|
||
|
direnv = {disabled = false;};
|
||
|
git_branch = {
|
||
|
symbol = " ";
|
||
|
only_attached = true;
|
||
|
ignore_branches = ["master" "main"];
|
||
|
};
|
||
|
git_commit = {
|
||
|
format = "[ $hash | $tag]($style) ";
|
||
|
tag_symbol = " ";
|
||
|
tag_disabled = false;
|
||
|
};
|
||
|
git_metrics = {disabled = false;};
|
||
|
git_status = {
|
||
|
stashed = " ";
|
||
|
ahead = " ";
|
||
|
behind = " ";
|
||
|
up_to_date = "";
|
||
|
diverged = " ";
|
||
|
conflicted = " ";
|
||
|
deleted = " ";
|
||
|
renamed = " ";
|
||
|
modified = " ";
|
||
|
staged = " ";
|
||
|
untracked = " ";
|
||
|
typechanged = " ";
|
||
|
};
|
||
|
hostname = {
|
||
|
ssh_only = false;
|
||
|
ssh_symbol = " ";
|
||
|
};
|
||
|
jobs = {symbol = " ";};
|
||
|
line_break = {disabled = false;};
|
||
|
localip = {disabled = false;};
|
||
|
lua = {symbol = " ";};
|
||
|
memory_usage = {disabled = false;};
|
||
|
nodejs = {symbol = " ";};
|
||
|
os = {
|
||
|
disabled = false;
|
||
|
format = "on [$symbol]($style) ";
|
||
|
symbols = {
|
||
|
Alpine = " ";
|
||
|
Arch = " ";
|
||
|
Artix = " ";
|
||
|
CentOS = " ";
|
||
|
Debian = " ";
|
||
|
EndeavourOS = " ";
|
||
|
Fedora = " ";
|
||
|
FreeBSD = " ";
|
||
|
Gentoo = " ";
|
||
|
Illumos = " ";
|
||
|
Linux = " ";
|
||
|
Macos = " ";
|
||
|
Manjaro = " ";
|
||
|
Mint = " ";
|
||
|
NixOS = " ";
|
||
|
OpenBSD = " ";
|
||
|
openSUSE = " ";
|
||
|
Pop = " ";
|
||
|
Raspbian = " ";
|
||
|
Redhat = " ";
|
||
|
RedHatEnterprise = " ";
|
||
|
Solus = " ";
|
||
|
SUSE = " ";
|
||
|
Ubuntu = " ";
|
||
|
Unknown = " ";
|
||
|
Windows = " ";
|
||
|
};
|
||
|
};
|
||
|
package = {symbol = " ";};
|
||
|
python = {
|
||
|
python_binary = "python3";
|
||
|
symbol = " ";
|
||
|
};
|
||
|
shell = {
|
||
|
disabled = false;
|
||
|
format = "using [$indicator ]($style)";
|
||
|
};
|
||
|
status = {
|
||
|
disabled = false;
|
||
|
map_symbol = true;
|
||
|
pipestatus = true;
|
||
|
symbol = " ";
|
||
|
success_symbol = "";
|
||
|
not_executable_symbol = " ";
|
||
|
not_found_symbol = " ";
|
||
|
sigint_symbol = " ";
|
||
|
signal_symbol = " ";
|
||
|
};
|
||
|
sudo = {disabled = false;};
|
||
|
};
|
||
|
};
|
||
|
}
|