nix/bash/default.nix

18 lines
251 B
Nix
Raw Normal View History

2022-11-25 16:30:22 +00:00
{ config, pkgs, ... }:
{
programs.bash = {
enable = true;
2022-11-30 19:12:27 +00:00
shellAliases = {
grep = "grep --color";
};
profileExtra = ''
2022-12-06 23:27:25 +00:00
SHELL="$BASH"
2022-11-25 16:30:22 +00:00
set -o vi
2022-12-04 19:32:16 +00:00
bind "set show-mode-in-prompt on"
2022-11-25 16:30:22 +00:00
neofetch
'';
};
}