mirror of
https://github.com/srid/nixos-config.git
synced 2026-01-09 09:50:14 +08:00
18 lines
362 B
Nix
18 lines
362 B
Nix
{
|
|
programs.starship = {
|
|
enable = true;
|
|
settings = {
|
|
username = {
|
|
format = "[$user](bold blue) ";
|
|
disabled = false;
|
|
show_always = true;
|
|
};
|
|
hostname = {
|
|
ssh_only = false;
|
|
format = "on [$hostname](bold red) ";
|
|
trim_at = ".companyname.com";
|
|
disabled = false;
|
|
};
|
|
};
|
|
};
|
|
}
|