From b786b00023fa2166c3acaad002cbeb087e5395f7 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 27 May 2016 11:08:28 +0200 Subject: [PATCH] KDE test: Bump kdm start timeout Hopefully this will fix random failures like http://hydra.nixos.org/build/36249079. --- nixos/modules/testing/test-instrumentation.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/nixos/modules/testing/test-instrumentation.nix b/nixos/modules/testing/test-instrumentation.nix index 40a40c8a570..e216351b434 100644 --- a/nixos/modules/testing/test-instrumentation.nix +++ b/nixos/modules/testing/test-instrumentation.nix @@ -115,6 +115,14 @@ let kernel = config.boot.kernelPackages.kernel; in services.xserver.displayManager.logToJournal = true; + # Bump kdm's X server start timeout to account for heavily loaded + # VM host systems. + services.xserver.displayManager.kdm.extraConfig = + '' + [X-:*-Core] + ServerTimeout=240 + ''; + }; }