summary refs log tree commit diff
path: root/nixos/doc
diff options
context:
space:
mode:
authorEvgeny Egorochkin <phreedom@yandex.ru>2013-10-27 08:53:47 +0200
committerEvgeny Egorochkin <phreedom@yandex.ru>2013-10-27 08:53:47 +0200
commit5580abd60a4b7f0ee7d4354ceb5a7281dd6ab305 (patch)
treed8430f3d0b7e315e4dcb9c389043da089bff7f4a /nixos/doc
parent9cb699f587c8e3940aa3d014edd970a933b0027d (diff)
downloadnixlib-5580abd60a4b7f0ee7d4354ceb5a7281dd6ab305.tar
nixlib-5580abd60a4b7f0ee7d4354ceb5a7281dd6ab305.tar.gz
nixlib-5580abd60a4b7f0ee7d4354ceb5a7281dd6ab305.tar.bz2
nixlib-5580abd60a4b7f0ee7d4354ceb5a7281dd6ab305.tar.lz
nixlib-5580abd60a4b7f0ee7d4354ceb5a7281dd6ab305.tar.xz
nixlib-5580abd60a4b7f0ee7d4354ceb5a7281dd6ab305.tar.zst
nixlib-5580abd60a4b7f0ee7d4354ceb5a7281dd6ab305.zip
nixos manual: fix references to obsolete nixos repository
Diffstat (limited to 'nixos/doc')
-rw-r--r--nixos/doc/manual/development.xml5
1 files changed, 2 insertions, 3 deletions
diff --git a/nixos/doc/manual/development.xml b/nixos/doc/manual/development.xml
index dbaa2c4213d9..775143cc8351 100644
--- a/nixos/doc/manual/development.xml
+++ b/nixos/doc/manual/development.xml
@@ -30,12 +30,11 @@ or
 $ mkdir -p <replaceable>/my/sources</replaceable>
 $ cd <replaceable>/my/sources</replaceable>
 $ nix-env -i git
-$ git clone git://github.com/NixOS/nixos.git
 $ git clone git://github.com/NixOS/nixpkgs.git
 </screen>
 
 This will check out the latest NixOS sources to
-<filename><replaceable>/my/sources</replaceable>/nixos</filename> and
+<filename><replaceable>/my/sources</replaceable>/nixpkgs/nixos</filename> and
 the Nixpkgs sources to
 <filename><replaceable>/my/sources</replaceable>/nixpkgs</filename>.
 If you want to rebuild your system using your (modified) sources, you
@@ -43,7 +42,7 @@ need to tell <command>nixos-rebuild</command> about them using the
 <option>-I</option> flag:
 
 <screen>
-$ nixos-rebuild switch -I <replaceable>/my/sources</replaceable>
+$ nixos-rebuild switch -I <replaceable>/my/sources</replaceable>/nixpkgs
 </screen>
 
 </para>