forked from lix-project/lix
Binary tarball: Automatically fetch the Nixpkgs channel
This commit is contained in:
parent
b632153ebd
commit
c5839752b9
|
@ -15,6 +15,12 @@ if ! $nix/bin/nix-env -i @nix@; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
# Subscribe the user to the Nixpkgs channel and fetch it.
|
||||
if ! $nix/bin/nix-channel --list | grep -q "^nixpkgs "; then
|
||||
$nix/bin/nix-channel --add http://nixos.org/channels/nixpkgs-unstable
|
||||
fi
|
||||
$nix/bin/nix-channel --update nixpkgs
|
||||
|
||||
# Add nix.sh to the shell's profile.d directory.
|
||||
p=$NIX_LINK/etc/profile.d/nix.sh
|
||||
|
||||
|
@ -31,4 +37,4 @@ variables are set, please add the line
|
|||
|
||||
to your shell profile (e.g. ~/.profile).
|
||||
EOF
|
||||
fi
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue