nixos-config/home/shell/starship.nix

21 lines
432 B
Nix
Raw Normal View History

2023-03-17 12:37:26 +01:00
{ config, pkgs, ... }:
{
# starship prompt
programs.starship = {
enable = true;
settings = {
add_newline = false;
status.disabled = false;
status.symbol = " ";
aws.disabled = true;
gcloud.disabled = true;
# kitty/neovim don't play well with multi-width emojis
nix_shell.symbol = " ";
};
2023-04-09 21:43:53 +02:00
# @TODO broken in nixos-22.11
enableNushellIntegration = false;
2023-03-17 12:37:26 +01:00
};
}