home-manager/shell/starship.nix

12 lines
221 B
Nix
Raw Normal View History

2024-07-10 06:10:56 +00:00
{ lib, ... }:
{
programs.starship = {
enable = true;
settings = {
format = lib.concatStrings [ "$all" "$directory" "$character" ];
hostname.format = "[$ssh_symbol$hostname]($style) ";
};
};
}