dotfiles/nixos/home/modules/shell.nix
2025-01-11 22:07:56 +01:00

20 lines
294 B
Nix

{ pkgs, lib, ... }: {
programs.bash = {
enable = true;
enableCompletion = true;
};
programs.bash.bashrcExtra = ''
eval "$(starship init bash)"
'';
programs.zoxide = {
enable = true;
enableBashIntegration = true;
options = [
"--cmd cd"
];
};
}