From: Jakub Czajka Date: Sun, 12 May 2024 10:54:23 +0000 (+0200) Subject: [system] Explicly disable Wayland. X-Git-Url: https://git.ekhem.eu.org/?a=commitdiff_plain;h=cd4fbfd7c905c723f1f05eefea756cd1566c60bd;p=guix.git [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. --- 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)))))))