nix/bash/default.nix

17 lines
229 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";
};
2022-11-25 16:30:22 +00:00
profileExtra =''
set -o vi
[ ! -z $TMUX ] || tmux a || tmux
neofetch
'';
};
}