nix/bash/default.nix
2022-12-06 18:27:25 -05:00

18 lines
251 B
Nix

{ config, pkgs, ... }:
{
programs.bash = {
enable = true;
shellAliases = {
grep = "grep --color";
};
profileExtra = ''
SHELL="$BASH"
set -o vi
bind "set show-mode-in-prompt on"
neofetch
'';
};
}