diff --git a/home-manager/common/software/cli/bash.nix b/home-manager/common/software/cli/bash.nix index 3e961777..a7a89adf 100644 --- a/home-manager/common/software/cli/bash.nix +++ b/home-manager/common/software/cli/bash.nix @@ -5,7 +5,7 @@ # https://github.com/justjanne/powerline-go # https://nix-community.github.io/home-manager/options.html#opt-programs.powerline-go.enable programs.powerline-go = { - enable = true; + enable = false; # https://github.com/justjanne/powerline-go#customization settings = { hostname-only-if-ssh = true; @@ -31,6 +31,10 @@ }; programs = { + starship = { + enable = true; + enableBashIntegration = true; + }; bash = { enable = true; enableCompletion = true;