Updating from trunk

svn path=/nixos/branches/stdenv-updates/; revision=24555
This commit is contained in:
Lluís Batlle i Rossell
2010-10-31 19:36:37 +00:00
14 changed files with 218 additions and 50 deletions

View File

@@ -1,4 +1,4 @@
{ nixpkgs, services, system }:
{ nixpkgs, services, system, useBackdoor ? false }:
let pkgs = import nixpkgs { config = {}; inherit system; }; in
@@ -58,7 +58,7 @@ rec {
modules = configurations ++
[ ../modules/virtualisation/qemu-vm.nix
../modules/testing/test-instrumentation.nix # !!! should only get added for automated test runs
{ key = "no-manual"; services.nixosManual.enable = false; }
{ key = "no-manual"; services.nixosManual.enable = false; virtualisation.useBackdoor = useBackdoor; }
];
extraArgs = { inherit nodes; };
};