12 lines
215 B
Nix
12 lines
215 B
Nix
{ pkgs, ... }: {
|
|
environment.shells = with pkgs; [ bashInteractive ];
|
|
|
|
programs = {
|
|
bash = {
|
|
enable = true;
|
|
enableVteIntetration = true;
|
|
};
|
|
|
|
starship.enableBashIntegration = true;
|
|
};
|
|
}
|