nix/modules/home/cli/common/shell.nix

22 lines
253 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
eza
bat
];
home.shellAliases = {
ls = "eza";
};
programs.bash = {
enable = true;
};
programs.starship = {
enable = true;
enableBashIntegration = true;
};
}