From f66c4ad65f0c573033851a0776cc27380d5c7271 Mon Sep 17 00:00:00 2001 From: OPNA2608 Date: Sun, 18 May 2025 10:58:52 +0200 Subject: [PATCH] nixos/tests/common/x11.nix: Fix IceWM theme --- nixos/tests/common/x11.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nixos/tests/common/x11.nix b/nixos/tests/common/x11.nix index b79cedb864de..3d4b2fb71105 100644 --- a/nixos/tests/common/x11.nix +++ b/nixos/tests/common/x11.nix @@ -14,4 +14,9 @@ # Don't use a desktop manager. 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" + ''; }