puter/common/bash.nix

19 lines
304 B
Nix
Raw Normal View History

2024-03-08 21:46:46 +00:00
{
programs = {
command-not-found.enable = false;
bash = {
blesh.enable = true;
interactiveShellInit = ''
shopt -s globstar
shopt -s nullglob
shopt -s extglob
shopt -s checkwinsize
bind 'set show-mode-in-prompt off'
'';
};
};
}