nix-config/modules/default/home-manager/shell/bash.nix
2024-12-27 15:08:02 +01:00

20 lines
235 B
Nix

{ ... }:
{
programs = {
bash = {
enable = true;
shellAliases = {
ls = "eza";
};
};
starship = {
enableBashIntegration = true;
};
};
# programs.bash.blesh.enable = true;
}