testing-python: readd auto displayManager

we import it for the runInMachineWithX
This commit is contained in:
worldofpeace 2020-02-09 16:23:35 -05:00
parent fa9af83e96
commit 88f76812f2
1 changed files with 4 additions and 1 deletions

View File

@ -263,9 +263,12 @@ in rec {
{ ... }: { ... }:
{ {
inherit require; inherit require;
imports = [
../tests/common/auto.nix
];
virtualisation.memorySize = 1024; virtualisation.memorySize = 1024;
services.xserver.enable = true; services.xserver.enable = true;
services.xserver.displayManager.auto.enable = true; test-support.displayManager.auto.enable = true;
services.xserver.displayManager.defaultSession = "none+icewm"; services.xserver.displayManager.defaultSession = "none+icewm";
services.xserver.windowManager.icewm.enable = true; services.xserver.windowManager.icewm.enable = true;
}; };