diff --git a/doc/manual/nix-channel.xml b/doc/manual/nix-channel.xml
index 68dcfd45d..2c4e1151b 100644
--- a/doc/manual/nix-channel.xml
+++ b/doc/manual/nix-channel.xml
@@ -103,7 +103,7 @@ respectively.
To subscribe to the Nixpkgs channel and install the GNU Hello package:
-$ nix-channel --add http://nixos.org/releases/nixpkgs/channels/nixpkgs-unstable
+$ nix-channel --add http://nixos.org/channels/nixpkgs-unstable
$ nix-channel --update
$ nix-env -iA nixpkgs.hello
diff --git a/doc/manual/package-management.xml b/doc/manual/package-management.xml
index 314218daf..ca19b1325 100644
--- a/doc/manual/package-management.xml
+++ b/doc/manual/package-management.xml
@@ -443,7 +443,7 @@ URL.
nix-channel --add, e.g.,
-$ nix-channel --add http://nixos.org/releases/nixpkgs/channels/nixpkgs-unstable
+$ nix-channel --add http://nixos.org/channels/nixpkgs-unstable
subscribes you to a channel that always contains that latest version
of the Nix Packages collection. (Instead of
diff --git a/doc/manual/quick-start.xml b/doc/manual/quick-start.xml
index bc43dea61..606a93ad5 100644
--- a/doc/manual/quick-start.xml
+++ b/doc/manual/quick-start.xml
@@ -41,7 +41,7 @@ file).
Subscribe to the Nix Packages channel.
-$ nix-channel --add http://nixos.org/releases/nixpkgs/channels/nixpkgs-unstable
+$ nix-channel --add http://nixos.org/channels/nixpkgs-unstable
diff --git a/scripts/nix-profile.sh.in b/scripts/nix-profile.sh.in
index ed49a892d..16eb754c5 100644
--- a/scripts/nix-profile.sh.in
+++ b/scripts/nix-profile.sh.in
@@ -10,7 +10,7 @@ if test -n "$HOME"; then
# Subscribe the root user to the Nixpkgs channel by default.
if [ ! -e $HOME/.nix-channels ]; then
- echo "http://nixos.org/releases/nixos/channels/nixpkgs-unstable nixpkgs" > $HOME/.nix-channels
+ echo "http://nixos.org/channels/nixpkgs-unstable nixpkgs" > $HOME/.nix-channels
fi
export PATH=$NIX_LINK/bin:$PATH