From 3dbb5b9eb6494736886b04ad2a8b9d20415d9dc1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luukas=20P=C3=B6rtfors?= Date: Wed, 29 Oct 2025 17:33:59 +0200 Subject: [PATCH] nixos/tests: remove icewm taskbar Co-authored-by: Matias Zwinger --- nixos/tests/common/x11.nix | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/nixos/tests/common/x11.nix b/nixos/tests/common/x11.nix index 3d4b2fb71105..16bdbfa7ae24 100644 --- a/nixos/tests/common/x11.nix +++ b/nixos/tests/common/x11.nix @@ -15,8 +15,15 @@ services.displayManager.defaultSession = lib.mkDefault "none+icewm"; services.xserver.windowManager.icewm.enable = true; - # Help with OCR - environment.etc."icewm/theme".text = '' - Theme="gtk2/default.theme" - ''; + environment.etc = { + # Help with OCR + "icewm/theme".text = '' + Theme="gtk2/default.theme" + ''; + # Remove task bar to avoid non-determinism + "icewm/preferences".text = '' + ShowTaskBar=0 + ''; + }; + }