diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2018-05-25T11·36+0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-25T11·36+0200 |
commit | 1df32c7d7c5ce0a4d10fa1e13f557ff525a62efa (patch) | |
tree | f195853ded8a23db3454f89e45221f9403076736 /scripts | |
parent | 743359bc8a2f7e3d7bbe0a10b19180863d82139f (diff) | |
parent | d7a84d330cc677d3c9e2c5553a861ab9f82245f6 (diff) |
Merge pull request #1664 from matthewbauer/patch-4
Setup NIX_PATH correctly in nix-profile-daemon
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/nix-profile-daemon.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/nix-profile-daemon.sh.in b/scripts/nix-profile-daemon.sh.in index 43c7156062de..4632099e3c80 100644 --- a/scripts/nix-profile-daemon.sh.in +++ b/scripts/nix-profile-daemon.sh.in @@ -50,5 +50,5 @@ if test -w $HOME; then fi export NIX_SSL_CERT_FILE="@localstatedir@/nix/profiles/default/etc/ssl/certs/ca-bundle.crt" -export NIX_PATH="@localstatedir@/nix/profiles/per-user/root/channels" +export NIX_PATH="nixpkgs=@localstatedir@/nix/profiles/per-user/root/channels/nixpkgs:@localstatedir@/nix/profiles/per-user/root/channels" export PATH="$HOME/.nix-profile/bin:$HOME/.nix-profile/lib/kde4/libexec:@localstatedir@/nix/profiles/default/bin:@localstatedir@/nix/profiles/default:@localstatedir@/nix/profiles/default/lib/kde4/libexec:$PATH" |