infrastructure/nixos/base/shell.nix
2024-04-27 11:45:40 -07:00

17 lines
383 B
Nix

{config, ...}: {
programs.zsh = {
enable = true;
enableCompletion = true;
interactiveShellInit = ''
setopt autocd
setopt HIST_IGNORE_DUPS
setopt HIST_IGNORE_SPACE
HISTORY_IGNORE="(*^C*|:*|/*|~*|.(/*|./*|.)|(sudo |)(ls|cd)( *|))"
'';
};
programs.bash = {
interactiveShellInit = ''
HISTIGNORE="[bf]g:exit: *:*^C*"
'';
};
}