infrastructure/nixos/base/shell.nix
2024-02-13 17:03:13 -08:00

19 lines
356 B
Nix

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