diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2021-08-30 13:14:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-30 13:14:18 +0200 |
commit | 9f9b0d267f7d6c4bb98c97bc52fb32c999d4e494 (patch) | |
tree | 701869e18f98535574592dfb499f11bb7e1cac43 | |
parent | 5f8b521d78ee7d3cb5babbc4e73c710fcd969afa (diff) | |
parent | 959c2af557ee21f360c1554e626bfbee10c52bcf (diff) |
Merge pull request #5179 from matthewbauer/use-zshrc
Revert "Use /etc/zshenv instead of /etc/zshrc for profile"
-rw-r--r-- | scripts/install-multi-user.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/install-multi-user.sh b/scripts/install-multi-user.sh index d02c5cac0..513127a62 100644 --- a/scripts/install-multi-user.sh +++ b/scripts/install-multi-user.sh @@ -33,7 +33,7 @@ NIX_BUILD_USER_NAME_TEMPLATE="nixbld%d" readonly NIX_ROOT="/nix" readonly NIX_EXTRA_CONF=${NIX_EXTRA_CONF:-} -readonly PROFILE_TARGETS=("/etc/bashrc" "/etc/profile.d/nix.sh" "/etc/zshenv" "/etc/bash.bashrc" "/etc/zsh/zshenv") +readonly PROFILE_TARGETS=("/etc/bashrc" "/etc/profile.d/nix.sh" "/etc/zshrc" "/etc/bash.bashrc" "/etc/zsh/zshrc") readonly PROFILE_BACKUP_SUFFIX=".backup-before-nix" readonly PROFILE_NIX_FILE="$NIX_ROOT/var/nix/profiles/default/etc/profile.d/nix-daemon.sh" |