nix-config/modules/default/home-manager/shell/bash.nix
2025-01-07 23:28:53 +01:00

20 lines
231 B
Nix

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