From cd4fbfd7c905c723f1f05eefea756cd1566c60bd Mon Sep 17 00:00:00 2001 From: Jakub Czajka Date: Sun, 12 May 2024 12:54:23 +0200 Subject: [PATCH] [system] Explicly disable Wayland. Accordion to documentation, `(wayland? #f)` is the default setting. However, Guix installed Xwayland which broke the system. By disabling Wayland explicitly Guix returned to Xorg. --- system.scm | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/system.scm b/system.scm index 06613b5..4c952cf 100644 --- a/system.scm +++ b/system.scm @@ -8,6 +8,7 @@ (conf system dns) (conf system volume) (gnu) + (gnu services xorg) (gnu system nss)) (use-package-modules base @@ -86,4 +87,8 @@ (list bluez-service dnscrypt-proxy-service keyboard-layout-service) - %desktop-services))) + (modify-services %desktop-services + (gdm-service-type config => + (gdm-configuration + (inherit config) + (wayland? #f))))))) -- 2.39.5