nix-dotfiles/hm/modules/bash.nix
2025-09-08 11:36:45 +02:00

13 lines
189 B
Nix

{
programs.bash = {
enable = true;
enableVteIntegration = true;
shellAliases = {
".." = "cd ..";
};
bashrcExtra = ''
source $HOME/.profile
'';
};
}