diff --git a/.config/guix/system/laptop-mimimi.scm b/.config/guix/system/laptop-mimimi.scm index c0c14012..4a7ed672 100644 --- a/.config/guix/system/laptop-mimimi.scm +++ b/.config/guix/system/laptop-mimimi.scm @@ -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