mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 04:19:19 -08:00
19 lines
356 B
Nix
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*"
|
|
'';
|
|
};
|
|
}
|