diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-10-10 22:17:49 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-10-11 11:29:03 +0000 |
commit | 683558e2ed8fd40ce29453b8136a95bedf55991a (patch) | |
tree | f7df6b29d8045f9199b3ff8746205857952984a2 | |
parent | 6b650fde4104113881f01ba809a33eaeb915b905 (diff) | |
download | guix-683558e2ed8fd40ce29453b8136a95bedf55991a.tar.gz |
services: slim-service-type: Do not extend profile with xterm.
This is not done for gdm-service-type, so do not do it here either, for consistency. Perhaps that change had been motivated by the fact that using ratpoison without a default terminal makes for a poor user experience (one cannot even view the help screen without a terminal); this was fixed with the preceding commit. * gnu/services/xorg.scm (slim-service-type) [profile-service-type]: Remove extension.
-rw-r--r-- | gnu/services/xorg.scm | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/gnu/services/xorg.scm b/gnu/services/xorg.scm index 902fef0058..7f1f0bb581 100644 --- a/gnu/services/xorg.scm +++ b/gnu/services/xorg.scm @@ -673,13 +673,7 @@ reboot_cmd " shepherd "/sbin/reboot\n" (list (service-extension shepherd-root-service-type slim-shepherd-service) (service-extension pam-root-service-type - slim-pam-service) - - ;; Unconditionally add xterm to the system profile, to - ;; avoid bad surprises. - (service-extension profile-service-type - (const (list xterm))))) - + slim-pam-service))) (default-value (slim-configuration)) (description "Run the SLiM graphical login manager for X11.")))) |