10 lines
167 B
Nix
10 lines
167 B
Nix
{ config, pkgs, ... }: {
|
|
programs = {
|
|
bash = {
|
|
enable = true;
|
|
enableVteIntetration = true;
|
|
};
|
|
|
|
starship.enableBashIntegration = true;
|
|
};
|
|
}
|