Removed the backdoor, because it does not work anymore and it has also become obsolete (Disnix uses something else now)

svn path=/nixos/trunk/; revision=25601
This commit is contained in:
Sander van der Burg
2011-01-17 16:15:59 +00:00
parent c7a5960101
commit 96b769c979
5 changed files with 5 additions and 52 deletions

View File

@@ -1,4 +1,4 @@
{ nixpkgs, services, system, useBackdoor ? false }:
{ nixpkgs, services, system }:
let pkgs = import nixpkgs { config = {}; inherit system; }; in
@@ -26,7 +26,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; virtualisation.useBackdoor = useBackdoor; }
{ key = "no-manual"; services.nixosManual.enable = false; }
];
extraArgs = { inherit nodes; };
};