config/guix/system/laptop-mimimi: Replace GDM by Slim.

Hopefully this will fix the logout screen flicker.
master
Pierre Neidhardt 2020-12-18 13:55:38 +01:00
parent d32dae6eba
commit a1666992fb
1 changed files with 15 additions and 15 deletions

View File

@ -73,26 +73,26 @@ EndSection")
(define %mimimi/services
(cons*
;; %ambrevar/power-tweaks
(service slim-service-type
(slim-configuration
(display ":0")
(vt "vt7")
(xorg-configuration
(xorg-configuration
(modules (list xf86-video-vesa
xf86-video-intel
;; xf86-video-nouveau ; Make sure this is on if the 'nouveau' kernel module is loaded.
xf86-input-libinput))
(extra-config (list %mimimi/xorg-touchpad))))))
(modify-services
%ambrevar/services
(remove (lambda (service)
(eq? (service-kind service) gdm-service-type))
%ambrevar/services)
(udev-service-type config =>
(udev-configuration
(inherit config)
(rules (append (udev-configuration-rules config)
(list %mimimi/backlight-udev-rule)))))
(gdm-service-type config =>
(gdm-configuration
(inherit config)
(default-user "ambrevar")
;; (auto-login? #t)
(xorg-configuration
(xorg-configuration
(modules (list xf86-video-vesa
xf86-video-intel
;; xf86-video-nouveau ; Make sure this is on if the 'nouveau' kernel module is loaded.
xf86-input-libinput))
(extra-config (list %mimimi/xorg-touchpad)))))))))
(list %mimimi/backlight-udev-rule))))))))
(define-public gnome-minimal
(package