From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51165) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eA6z8-00060e-Bv for guix-patches@gnu.org; Thu, 02 Nov 2017 00:20:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eA6z5-0006op-AL for guix-patches@gnu.org; Thu, 02 Nov 2017 00:20:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:38042) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eA6z5-0006oX-5D for guix-patches@gnu.org; Thu, 02 Nov 2017 00:20:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eA6z4-0002kM-VK for guix-patches@gnu.org; Thu, 02 Nov 2017 00:20:03 -0400 Subject: [bug#29112] [PATCH 2/3] gnu: gdm: Add configure flags for better defaults. References: <87o9olbasy.fsf@ngyro.com> In-Reply-To: <87o9olbasy.fsf@ngyro.com> Resent-Message-ID: From: Timothy Sample Date: Mon, 23 Oct 2017 21:36:15 -0400 Message-ID: <87inetb9ud.fsf@ngyro.com> MIME-Version: 1.0 Content-Type: text/plain List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 29112@debbugs.gnu.org Using --with-initial-vt=7 allows GDM to run alongside TTY 1, instead of having to replace it (i.e., stopping the mingetty service for TTY 1 before starting GDM). By default, GDM expects distributions to install a custom Xsession script. It provides a generic one if --enable-gdm-xsession is set. * gnu/packages/gnome.scm (gdm)[arguments]<#:configure-flags>: Add --with-initial-vt=7 and --enable-gdm-xsession. --- gnu/packages/gnome.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index ef52871c8..d8e4cd418 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -5223,6 +5223,8 @@ libxml2.") '(#:configure-flags `("--without-plymouth" "--disable-systemd-journal" + "--with-initial-vt=7" + "--enable-gdm-xsession" "--localstatedir=/var" ,(string-append "--with-default-path=" (string-join '("/run/setuid-programs" -- 2.14.3