Skip to content
This repository was archived by the owner on Aug 27, 2018. It is now read-only.

Commit cc7f3c7

Browse files
committed
* URL updates.
svn path=/nixos/trunk/; revision=11801
1 parent c612af3 commit cc7f3c7

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

README

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
NixOS is a Linux distribution based on the purely functional package
44
management system Nix. More information can be found at
5-
http://nix.cs.uu.nl/nixos and in the manual in doc/manual.
5+
http://nixos.org/nixos and in the manual in doc/manual.

doc/manual/installation.xml

+6-6
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@
1111
<title>Building the installation CD</title>
1212

1313
<para>Instead of building an installation CD, you could just download
14-
one from <link xlink:href="http://nix.cs.uu.nl/nixos/"/>. If you want
14+
one from <link xlink:href="http://nixos.org/nixos/"/>. If you want
1515
(or need) to build it yourself:
1616

1717
<orderedlist>
1818

1919
<listitem><para>Make sure that you have a <emphasis>very</emphasis>
2020
recent pre-release version of Nix installed (<link
21-
xlink:href="http://nix.cs.uu.nl/dist/nix/nix-unstable-latest/"/>).
21+
xlink:href="http://nixos.org/releases/nix/nix-unstable/"/>).
2222
The NixOS Nix expressions frequently use bleeding-edge features. If
2323
you get any kind of expression evaluation error, try to upgrade your
2424
Nix.</para></listitem>
@@ -29,18 +29,18 @@ one from <link xlink:href="http://nix.cs.uu.nl/nixos/"/>. If you want
2929
channel to speed up building, i.e.,
3030

3131
<screen>
32-
$ nix-channel --add http://nix.cs.uu.nl/dist/nix/channels-v3/nixpkgs-unstable
32+
$ nix-channel --add http://nixos.org/releases/nixpkgs/channels/nixpkgs-unstable
3333
$ nix-channel --update</screen>
3434

3535
</para></listitem>
3636

3737
<listitem><para>Check out NixOS from <link
38-
xlink:href="https://svn.cs.uu.nl:12443/repos/trace/nixos/trunk"/> as
38+
xlink:href="https://svn.nixos.org/repos/nix/nixos/trunk"/> as
3939
<literal>nixos</literal>.</para></listitem>
4040

4141
<listitem><para>If you don’t already have Nixpkgs checkout, Check
4242
out Nixpkgs from <link
43-
xlink:href="https://svn.cs.uu.nl:12443/repos/trace/nixos/trunk"/> as
43+
xlink:href="https://svn.nixos.org/repos/nix/nixos/trunk"/> as
4444
<literal>nixpkgs</literal>.</para></listitem>
4545

4646
<listitem><para>In the directory <literal>nixos</literal>, make a
@@ -174,7 +174,7 @@ $ nixos-hardware-scan > /mnt/etc/nixos/configuration.nix</screen>
174174

175175
<para>More examples of NixOS configurations for some actual
176176
machines can be found at <link
177-
xlink:href="https://svn.cs.uu.nl:12443/repos/trace/configurations/trunk/"/>.</para>
177+
xlink:href="https://svn.nixos.org/repos/nix/configurations/trunk/"/>.</para>
178178

179179
<note><para>It is very important that you specify in the option
180180
<option>boot.initrd.extraKernelModules</option> all kernel modules

installer/nixos-checkout.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ fi
1616

1717
# Obtain Subversion.
1818
if test -z "$(type -tp svn)"; then
19-
#nix-channel --add http://nix.cs.uu.nl/dist/nix/channels-v3/nixpkgs-unstable
19+
#nix-channel --add http://nixos.org/releases/nixpkgs/channels/nixpkgs-unstable
2020
#nix-channel --update
2121
nix-env -i subversion
2222
fi

system/options.nix

+4-4
Original file line numberDiff line numberDiff line change
@@ -2014,18 +2014,18 @@
20142014

20152015
nixpkgsURL = mkOption {
20162016
default = "";
2017-
example = http://nix.cs.uu.nl/dist/nix/nixpkgs-0.11pre7577;
2017+
example = http://nixos.org/releases/nix/nixpkgs-0.11pre7577;
20182018
description = "
20192019
URL of the Nixpkgs distribution to use when building the
20202020
installation CD.
20212021
";
20222022
};
20232023

20242024
manifests = mkOption {
2025-
default = [http://nix.cs.uu.nl/dist/nix/channels-v3/nixpkgs-unstable/MANIFEST];
2025+
default = [http://nixos.org/releases/nixpkgs/channels/nixpkgs-unstable/MANIFEST];
20262026
example =
2027-
[ http://nix.cs.uu.nl/dist/nix/channels-v3/nixpkgs-unstable/MANIFEST
2028-
http://nix.cs.uu.nl/dist/nix/channels-v3/nixpkgs-stable/MANIFEST
2027+
[ http://nixos.org/releases/nixpkgs/channels/nixpkgs-unstable/MANIFEST
2028+
http://nixos.org/releases/nixpkgs/channels/nixpkgs-stable/MANIFEST
20292029
];
20302030
description = "
20312031
URLs of manifests to be downloaded when you run

0 commit comments

Comments
 (0)