diff --git a/doc/manual/development.xml b/doc/manual/development.xml index 30d9be2b62c..8318c0bd04a 100644 --- a/doc/manual/development.xml +++ b/doc/manual/development.xml @@ -410,7 +410,7 @@ $ qemu-system-x86_64 -kernel ./kernel/bzImage -initrd ./initrd/initrd -hda /dev/ crashes). It will first build or download all the dependencies of the test (e.g., all packages needed to run a NixOS VM). The test is defined in + xlink:href="https://nixos.org/repos/nix/nixos/trunk/tests/nfs.nix"> tests/nfs.nix. If the test succeeds, nix-build will place a symlink ./result in the current directory pointing at @@ -483,7 +483,7 @@ $ qemu-system-x86_64 -kernel ./kernel/bzImage -initrd ./initrd/initrd -hda /dev/ The actual Nix programming interface to VM testing is in NixOS, under + xlink:href="https://nixos.org/repos/nix/nixos/trunk/lib/testing.nix"> lib/testing.nix. This file defines a function which takes an attribute set containing a nixpkgs attribute (the path to a Nixpkgs @@ -496,7 +496,7 @@ $ qemu-system-x86_64 -kernel ./kernel/bzImage -initrd ./initrd/initrd -hda /dev/ The makeTest function takes a function similar to that found in + xlink:href="https://nixos.org/repos/nix/nixos/trunk/tests/nfs.nix"> tests/nfs.nix (discussed above). It returns an attribute set containing (among others): diff --git a/doc/manual/installation.xml b/doc/manual/installation.xml index 6ae5906c860..b47731ffec9 100644 --- a/doc/manual/installation.xml +++ b/doc/manual/installation.xml @@ -35,11 +35,11 @@ $ nix-channel --update Check out NixOS from as + xlink:href="https://nixos.org/repos/nix/nixos/trunk"/> as nixos. Check out Nixpkgs from - as + as nixpkgs. Build the ISO image: @@ -175,7 +175,7 @@ $ nixos-option --install Examples are available in /etc/nixos/nixos/doc/config-examples and some actual NixOS configuration can be found at . + xlink:href="https://nixos.org/repos/nix/configurations/trunk/"/>. diff --git a/doc/manual/options-to-docbook.xsl b/doc/manual/options-to-docbook.xsl index 46e36b29289..660ba6208b3 100644 --- a/doc/manual/options-to-docbook.xsl +++ b/doc/manual/options-to-docbook.xsl @@ -156,7 +156,7 @@ or to the local filesystem. --> - https://svn.nixos.org/viewvc/nix/nixos/trunk/modules/?revision= + https://nixos.org/viewvc/nix/nixos/trunk/modules/?revision= file:// diff --git a/modules/installer/tools/nixos-checkout.nix b/modules/installer/tools/nixos-checkout.nix index 74a22bc84f5..f90d24b0864 100644 --- a/modules/installer/tools/nixos-checkout.nix +++ b/modules/installer/tools/nixos-checkout.nix @@ -28,8 +28,8 @@ let fi # Check out the NixOS and Nixpkgs sources. - ${pkgs.subversion}/bin/svn co https://svn.nixos.org/repos/nix/nixos/trunk nixos - ${pkgs.subversion}/bin/svn co https://svn.nixos.org/repos/nix/nixpkgs/trunk nixpkgs + ${pkgs.subversion}/bin/svn co https://nixos.org/repos/nix/nixos/trunk nixos + ${pkgs.subversion}/bin/svn co https://nixos.org/repos/nix/nixpkgs/trunk nixpkgs ''; };