universe/users/profiles/shells/bash.nix

10 lines
167 B
Nix

{ config, pkgs, ... }: {
programs = {
bash = {
enable = true;
enableVteIntetration = true;
};
starship.enableBashIntegration = true;
};
}