gnu: gdm: Add configure flags for better defaults.
* gnu/packages/gnome.scm (gdm)[arguments]<#:configure-flags>: Add --with-initial-vt=7 and --enable-gdm-xsession. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
950d8e5d8c
commit
51bc8357e8
|
@ -5218,6 +5218,16 @@ libxml2.")
|
||||||
'(#:configure-flags
|
'(#:configure-flags
|
||||||
`("--without-plymouth"
|
`("--without-plymouth"
|
||||||
"--disable-systemd-journal"
|
"--disable-systemd-journal"
|
||||||
|
|
||||||
|
;; 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).
|
||||||
|
"--with-initial-vt=7"
|
||||||
|
|
||||||
|
;; By default, GDM expects distributions to install a custom Xsession
|
||||||
|
;; script. It provides a generic one if --enable-gdm-xsession is set.
|
||||||
|
"--enable-gdm-xsession"
|
||||||
|
|
||||||
"--localstatedir=/var"
|
"--localstatedir=/var"
|
||||||
,(string-append "--with-default-path="
|
,(string-append "--with-default-path="
|
||||||
(string-join '("/run/setuid-programs"
|
(string-join '("/run/setuid-programs"
|
||||||
|
|
Loading…
Reference in New Issue