diff --git a/home/modules/programs/starship/default.nix b/home/modules/programs/starship/default.nix index 804c875..25e87d4 100644 --- a/home/modules/programs/starship/default.nix +++ b/home/modules/programs/starship/default.nix @@ -40,10 +40,6 @@ in }) (lib.mkIf (cfg.enable && bash-cfg.enable) { programs.starship.enableBashIntegration = true; - programs.bash.bashrcExtra = '' - bleopt prompt_ps1_final='$(starship module character)' - bleopt prompt_rps1_final='$(starship module time)' - ''; }) (lib.mkIf (cfg.enable && ion-cfg.enable) { programs.starship.enableIonIntegration = true; diff --git a/nixos/modules/programs/bash.nix b/nixos/modules/programs/bash.nix index 834b354..5658a5c 100644 --- a/nixos/modules/programs/bash.nix +++ b/nixos/modules/programs/bash.nix @@ -14,7 +14,6 @@ in }; config = lib.mkIf cfg.enable { programs.bash = { - blesh.enable = true; }; }; }