nix-config/users/willifan/common/shell/bash.nix
2024-10-13 16:33:56 +02:00

20 lines
276 B
Nix

{ ... }:
{
home-manager.users.willifan = {
programs = {
bash = {
enable = true;
shellAliases = {
ls = "eza";
};
};
starship = {
enableBashIntegration = true;
};
};
};
# programs.bash.blesh.enable = true;
}