programs.zsh: allow override of history defaults

makefu ed83b8a6 4f025e02

Changed files
+6 -6
nixos
modules
programs
zsh
+6 -6
nixos/modules/programs/zsh/zsh.nix
···
loginShellInit = cfge.loginShellInit;
interactiveShellInit = ''
-
${cfge.interactiveShellInit}
-
-
${cfg.promptInit}
-
${zshAliases}
-
-
# Some sane history defaults
+
# history defaults
export SAVEHIST=2000
export HISTSIZE=2000
export HISTFILE=$HOME/.zsh_history
setopt HIST_IGNORE_DUPS SHARE_HISTORY HIST_FCNTL_LOCK
+
+
${cfge.interactiveShellInit}
+
+
${cfg.promptInit}
+
${zshAliases}
# Tell zsh how to find installed completions
for p in ''${(z)NIX_PROFILES}; do