universe/users/profiles/shells/bash.nix

12 lines
215 B
Nix

{ pkgs, ... }: {
environment.shells = with pkgs; [ bashInteractive ];
programs = {
bash = {
enable = true;
enableVteIntetration = true;
};
starship.enableBashIntegration = true;
};
}