summary refs log tree commit diff
path: root/modules/system/activation/top-level.nix
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2009-07-30 04:20:23 +0000
committerMichael Raskin <7c6f434c@mail.ru>2009-07-30 04:20:23 +0000
commit6aba79bed578f7df78825468598f5c5c20e78dd7 (patch)
treee41a3228b6bf7bdfb69a2baaa9387799782abc9f /modules/system/activation/top-level.nix
parent9c05dd98dcaaf2d3358d0e6f4772dc6ed244e77a (diff)
downloadnixpkgs-6aba79bed578f7df78825468598f5c5c20e78dd7.tar
nixpkgs-6aba79bed578f7df78825468598f5c5c20e78dd7.tar.gz
nixpkgs-6aba79bed578f7df78825468598f5c5c20e78dd7.tar.bz2
nixpkgs-6aba79bed578f7df78825468598f5c5c20e78dd7.tar.lz
nixpkgs-6aba79bed578f7df78825468598f5c5c20e78dd7.tar.xz
nixpkgs-6aba79bed578f7df78825468598f5c5c20e78dd7.tar.zst
nixpkgs-6aba79bed578f7df78825468598f5c5c20e78dd7.zip
Update child configuration generation
svn path=/nixos/branches/modular-nixos/; revision=16514
Diffstat (limited to 'modules/system/activation/top-level.nix')
-rw-r--r--modules/system/activation/top-level.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/modules/system/activation/top-level.nix b/modules/system/activation/top-level.nix
index 4d8e2055111..124c39e5b51 100644
--- a/modules/system/activation/top-level.nix
+++ b/modules/system/activation/top-level.nix
@@ -27,9 +27,8 @@ let
   # you can provide an easy way to boot the same configuration 
   # as you use, but with another kernel
   # !!! fix this
-  children = map (x: ((import ./system.nix)
-    { platform = pkgs.system;
-      configuration = x//{boot=((x.boot)//{grubDevice = "";});};}).system) 
+  children = map (x: ((import ../../../default.nix)
+    { configuration = x//{boot=((x.boot)//{grubDevice = "";});};}).system) 
     config.nesting.children;