17 lines
229 B
Nix
17 lines
229 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
programs.bash = {
|
|
enable = true;
|
|
shellAliases = {
|
|
grep = "grep --color";
|
|
};
|
|
profileExtra =''
|
|
set -o vi
|
|
[ ! -z $TMUX ] || tmux a || tmux
|
|
neofetch
|
|
'';
|
|
};
|
|
|
|
}
|