nix-dotfiles/hm_modules/bash.nix
2022-11-27 12:02:56 +01:00

13 lines
189 B
Nix

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