From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Enge Subject: bug#22835: Autologin Date: Sun, 28 Feb 2016 00:14:53 +0100 Message-ID: <20160227231453.GA11981@solar> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:49156) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aZo5n-0007Xs-PH for bug-guix@gnu.org; Sat, 27 Feb 2016 18:16:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aZo5i-0005Ck-PE for bug-guix@gnu.org; Sat, 27 Feb 2016 18:16:07 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:52061) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aZo5i-0005Ce-Lc for bug-guix@gnu.org; Sat, 27 Feb 2016 18:16:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84) (envelope-from ) id 1aZo5i-0003Dg-Hk for bug-guix@gnu.org; Sat, 27 Feb 2016 18:16:02 -0500 Sender: "Debbugs-submit" Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48675) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aZo4n-0006nb-0q for bug-guix@gnu.org; Sat, 27 Feb 2016 18:15:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aZo4h-0004sO-V9 for bug-guix@gnu.org; Sat, 27 Feb 2016 18:15:04 -0500 Received: from mailrelay7.public.one.com ([91.198.169.215]:35546) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aZo4h-0004s5-Ir for bug-guix@gnu.org; Sat, 27 Feb 2016 18:14:59 -0500 Content-Disposition: inline List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org To: 22835@debbugs.gnu.org Hello, I am trying to create a configuration using slim-service with autologin. Looking at the code in gnu/services/xorg.scm, I find the following definition: (define* (slim-service #:key (slim slim) (allow-empty-passwords? #t) auto-login? (default-user "") (theme %default-slim-theme) (theme-name %default-slim-theme-name) (xauth xauth) (shepherd shepherd) (bash bash) (auto-login-session #~(string-append #$windowmaker "/bin/wmaker")) (startx (xorg-start-command))) The parameter auto-login-session is not documented in guix.texi. It also is a bit surprising; since I had added only xfce to my packages, I expected this to start. Or is this impossible to realise? Andreas