feat: add basic bash config

This commit is contained in:
Infinidoge 2021-09-19 21:19:48 -04:00
parent b0ecb5b56d
commit a9cd7fb56e

View file

@ -0,0 +1,12 @@
{ pkgs, ... }: {
environment.shells = with pkgs; [ bashInteractive ];
programs = {
bash = {
enable = true;
enableVteIntetration = true;
};
starship.enableBashIntegration = true;
};
}