nixos-config/home/starship.nix
2022-04-08 22:14:24 -04:00

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;
};
};
};
}