universe/users/profiles/shells/bash.nix

12 lines
230 B
Nix

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