* More refactoring.

svn path=/nixos/trunk/; revision=7534
This commit is contained in:
Eelco Dolstra 2007-01-04 10:31:36 +00:00
parent b6b5bafa22
commit 966f6e0fb0
4 changed files with 5 additions and 5 deletions

8
README
View file

@ -10,7 +10,7 @@
- Build the ISO image:
$ nix-build instances/rescue-cd.nix -A rescueCD
$ nix-build configuration/rescue-cd.nix -A rescueCD
This gives you an image in result/iso/nixos.iso.
@ -43,9 +43,9 @@
- The installation is declarative; you need to make a description of
the configuration that is to be built and activated. The
configuration is specified in a Nix expression. See
instances/examples for example machine configurations. You can copy
and edit one of those (e.g., instances/examples/basic.nix to
my-config.nix). See configuration/options.nix for available
configuration/examples for example machine configurations. You can
copy and edit one of those (e.g., configuration/examples/basic.nix
to my-config.nix). See system/options.nix for available
configuration settings. The text editor "nano" is available.
In particular you need to specify boot.rootDevice and

View file

@ -19,7 +19,7 @@ rec {
};
system = import ../configuration/system.nix {
system = import ../system/system.nix {
inherit configuration;
stage2Init = "/init";
};