From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Seuret Subject: Problems with auto-login configuration Date: Wed, 25 Mar 2020 21:20:23 +0100 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:35889) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jHCW0-0007c3-P8 for help-guix@gnu.org; Wed, 25 Mar 2020 16:20:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jHCVy-0008Fi-Rw for help-guix@gnu.org; Wed, 25 Mar 2020 16:20:39 -0400 Received: from out.migadu.com ([91.121.223.63]:54450) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1jHCVy-0008Dr-AE for help-guix@gnu.org; Wed, 25 Mar 2020 16:20:38 -0400 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane-mx.org@gnu.org Sender: "Help-Guix" To: help-guix 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