From a9d6ad5593b1c0f1e727ff82fe49a26fefa80a3d Mon Sep 17 00:00:00 2001 From: iFargle Date: Fri, 19 Jan 2024 13:02:09 +0900 Subject: [PATCH] Begin testing starship --- home-manager/common/software/cli/bash.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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;