Hello, I am a new Guix user and first I want say wow! Being able to just write the configuration in a text file is only one of the nice things about guix. So thank to all the developers.
That being said, I have a small problem. I am trying to setup a machine so that a user is logged in automatically but I have problems. Here is my (services ...) configuration for this. (services (append (list (service gnome-desktop-service-type) (service openssh-service-type) (set-xorg-configuration (xorg-configuration (keyboard-layout keyboard-layout)))) (modify-services %desktop-services (gdm-service-type config => (gdm-configuration (auto-login? #t) (default-user "username")))))) The problem, is that, if i have (auto-login? #f) then the systems boot all the way to GDM and I can login with all users. However, when I try with (auto-login? #t), then the system just presents me with a console login. The user with username is also define in (users ...). I am sure that I have done something false, unfortunately, I can't seem find it. Thanks in advance, -- E. Seuret