nix-dotfiles/hm_modules/bash.nix
2023-01-19 20:01:19 +01:00

11 lines
179 B
Nix

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