From fa32ac7fb6328e07c86d5b0362db8b3c15f672e2 Mon Sep 17 00:00:00 2001 From: Marc Weber Date: Fri, 15 May 2009 16:07:27 +0000 Subject: [PATCH] follow -r15428 and move the comment as well svn path=/nixos/trunk/; revision=15620 --- system/system.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/system/system.nix b/system/system.nix index 2c60b82f066..35772347462 100644 --- a/system/system.nix +++ b/system/system.nix @@ -379,6 +379,11 @@ rec { grubSplashImage bootMount configurationLimit; }; + # 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) @@ -417,11 +422,6 @@ rec { pkgs.upstart # for initctl ]; upstartInterfaceVersion = pkgs.upstart.interfaceVersion; - # 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 }) config.environment.checkConfigurationOptions optionDeclarations config;