diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-05-27 11:10:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-27 11:10:08 +0200 |
commit | 228857efc6b08d250025baf429da12e1fc439c4f (patch) | |
tree | 20cad5adcc07b52fcf9982b6df388cf1ed7a9b11 /scripts | |
parent | 66d3ac94c9e732778562f75c2dacfa2c22702f2c (diff) | |
parent | 909d8cb2934869c945ac1cc20dfb71df513042eb (diff) |
Merge pull request #3608 from surajbarkale/patch-1
Use /etc/zshenv instead of /etc/zshrc for profile
Diffstat (limited to 'scripts')
-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 d04b4bbbf..157e8ddb4 100644 --- a/scripts/install-multi-user.sh +++ b/scripts/install-multi-user.sh @@ -31,7 +31,7 @@ readonly NIX_FIRST_BUILD_UID="30001" readonly NIX_ROOT="/nix" readonly NIX_EXTRA_CONF=${NIX_EXTRA_CONF:-} -readonly PROFILE_TARGETS=("/etc/bashrc" "/etc/profile.d/nix.sh" "/etc/zshrc") +readonly PROFILE_TARGETS=("/etc/bashrc" "/etc/profile.d/nix.sh" "/etc/zshenv") readonly PROFILE_BACKUP_SUFFIX=".backup-before-nix" readonly PROFILE_NIX_FILE="$NIX_ROOT/var/nix/profiles/default/etc/profile.d/nix-daemon.sh" |