3
0
Fork 0
forked from mirrors/nixpkgs

Adding comment about child configurations

svn path=/nixos/trunk/; revision=14889
This commit is contained in:
Michael Raskin 2009-04-05 19:13:52 +00:00
parent 4be528a72c
commit 5dadce8770

View file

@ -404,7 +404,11 @@ rec {
pkgs.diffutils
pkgs.upstart # for initctl
];
# !!! wtf does this do???
# This attribute is responsible for creating boot entries for
# child configuration. They are only (directly) accessible
# when the parent configuration is boot default. For example,
# you can provide an easy way to boot the same configuration
# as you use, but with another kernel
children = map (x: ((import ./system.nix)
{ inherit platform;
configuration = x//{boot=((x.boot)//{grubDevice = "";});};}).system)