1
1
mirror of https://github.com/LnL7/nix-darwin.git synced 2024-09-11 12:49:18 +03:00

zsh: move environment variables to zshenv

This commit is contained in:
Daiderd Jordan 2017-10-07 11:19:11 +02:00
parent af0579f4a1
commit 94fddd38af
No known key found for this signature in database
GPG Key ID: D02435D05B810C96
2 changed files with 14 additions and 18 deletions

View File

@ -3,7 +3,6 @@
with lib;
let
cfg = config.programs.zsh;
zshVariables =
@ -21,12 +20,10 @@ let
mkdir -p $out/bin
makeWrapper ${pkgs.zsh}/bin/zsh $out/bin/zsh
'';
in
{
options = {
programs.zsh.enable = mkOption {
type = types.bool;
default = false;
@ -105,7 +102,6 @@ in
default = false;
description = "Enable zsh-syntax-highlighting.";
};
};
config = mkIf cfg.enable {
@ -130,6 +126,13 @@ in
if [ -n "$__ETC_ZSHENV_SOURCED" ]; then return; fi
export __ETC_ZSHENV_SOURCED=1
# Don't execute this file when running in a pure nix-shell.
if test -n "$IN_NIX_SHELL"; then return; fi
export PATH=${config.environment.systemPath}
${config.system.build.setEnvironment}
${config.environment.extraInit}
${cfg.shellInit}
# Read system-wide modifications.
@ -147,6 +150,7 @@ in
__ETC_ZPROFILE_SOURCED=1
${concatStringsSep "\n" zshVariables}
${config.system.build.setAliases}
${cfg.loginShellInit}
@ -165,12 +169,6 @@ in
${optionalString cfg.enableFzfGit "source ${fzfGit}"}
${optionalString cfg.enableFzfHistory "source ${fzfHistory}"}
# Don't execute this file when running in a nix-shell.
if test ''${IN_NIX_SHELL:-0} -eq 1; then
PS1='%F{green}%B[nix-shell:%~]%#%b%f '
return
fi
# Only execute this file once per shell.
if [ -n "$__ETC_ZSHRC_SOURCED" -o -n "$NOSYSZSHRC" ]; then return; fi
__ETC_ZSHRC_SOURCED=1
@ -182,14 +180,8 @@ in
setopt HIST_IGNORE_DUPS SHARE_HISTORY HIST_FCNTL_LOCK
export PATH=${config.environment.systemPath}
${config.system.build.setEnvironment}
${config.system.build.setAliases}
${config.environment.extraInit}
${config.environment.interactiveShellInit}
${cfg.interactiveShellInit}
${cfg.promptInit}
# Tell zsh how to find installed completions
for p in ''${(z)NIX_PROFILES}; do
@ -203,6 +195,10 @@ in
"source ${pkgs.zsh-syntax-highlighting}/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh"
}
${cfg.promptInit}
if test -n "$IN_NIX_SHELL"; then PS1='%F{green}%B[nix-shell:%~]%#%b%f '; fi
# Read system-wide modifications.
if test -f /etc/zshrc.local; then
source /etc/zshrc.local

View File

@ -6,7 +6,7 @@
programs.zsh.enable = true;
test = ''
echo checking systemPath in /etc/zshrc >&2
grep 'export PATH=${pkgs.hello}/bin' ${config.out}/etc/zshrc
echo checking systemPath in /etc/zshenv >&2
grep 'export PATH=${pkgs.hello}/bin' ${config.out}/etc/zshenv
'';
}