svn path=/nixos/trunk/; revision=10051

This commit is contained in:
Eelco Dolstra 2008-01-02 15:31:04 +00:00
parent 35f5252630
commit 90a0d64bcd

View File

@ -607,10 +607,10 @@
ipAddress = "192.168.1.11"; ipAddress = "192.168.1.11";
} }
]; ];
description = '' description = "
A list mapping ethernet addresses to IP addresses for the A list mapping ethernet addresses to IP addresses for the
DHCP server. DHCP server.
''; ";
}; };
}; };
@ -1770,9 +1770,9 @@ root ALL=(ALL) SETENV: ALL
nix = mkOption { nix = mkOption {
default = pkgs: pkgs.nix; default = pkgs: pkgs.nix;
example = pkgs: pkgs.nixCustomFun /root/nix.tar.gz; example = pkgs: pkgs.nixCustomFun /root/nix.tar.gz;
description = '' description = "
Use non-default Nix easily. Be careful, though, not to break everything. Use non-default Nix easily. Be careful, though, not to break everything.
''; ";
}; };
}; };
@ -1780,9 +1780,9 @@ root ALL=(ALL) SETENV: ALL
nesting = { nesting = {
children = mkOption { children = mkOption {
default = []; default = [];
description = '' description = "
Additional configurations to build. Additional configurations to build.
''; ";
}; };
}; };