diff --git a/users/profiles/shells/bash.nix b/users/profiles/shells/bash.nix new file mode 100644 index 0000000..14fcd6e --- /dev/null +++ b/users/profiles/shells/bash.nix @@ -0,0 +1,12 @@ +{ pkgs, ... }: { + environment.shells = with pkgs; [ bashInteractive ]; + + programs = { + bash = { + enable = true; + enableVteIntetration = true; + }; + + starship.enableBashIntegration = true; + }; +}