nixos-config/home-manager/starship.nix

12 lines
241 B
Nix
Raw Normal View History

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