diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2018-01-05T11·00+0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-05T11·00+0100 |
commit | 6e0989685ab2e7c0e24aafeaaa3f389289c9684b (patch) | |
tree | ec829b165a6f2266dde9c9433dc1beb2ac3817da | |
parent | 44272d87193e6ab17d15501ebdcd317cdd39f616 (diff) | |
parent | 27788f406078489b2fc04749ebb86e267a19a6a5 (diff) |
Merge pull request #1774 from LnL7/darwin-no-etc-profile
installer: don't touch /etc/profile
-rw-r--r-- | scripts/install-darwin-multi-user.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/install-darwin-multi-user.sh b/scripts/install-darwin-multi-user.sh index 7bd00e42b975..91194a299a9a 100644 --- a/scripts/install-darwin-multi-user.sh +++ b/scripts/install-darwin-multi-user.sh @@ -33,7 +33,7 @@ readonly NIX_FIRST_BUILD_UID="30001" readonly NIX_ROOT="/nix" readonly PLIST_DEST=/Library/LaunchDaemons/org.nixos.nix-daemon.plist -readonly PROFILE_TARGETS=("/etc/profile" "/etc/bashrc" "/etc/zshrc") +readonly PROFILE_TARGETS=("/etc/bashrc" "/etc/zshrc") readonly PROFILE_BACKUP_SUFFIX=".backup-before-nix" readonly PROFILE_NIX_FILE="$NIX_ROOT/var/nix/profiles/default/etc/profile.d/nix-daemon.sh" |