12 lines
241 B
Nix
12 lines
241 B
Nix
{ config, lib, pkgs, user, ... }:
|
|
|
|
{
|
|
programs.starship = {
|
|
enable = true;
|
|
settings = {
|
|
format = lib.concatStrings [ "$all" "$directory" "$character" ];
|
|
hostname.format = "[$ssh_symbol$hostname]($style) ";
|
|
};
|
|
};
|
|
}
|