Skip to content

Commit

Permalink
Update system-configuration/libre-system-4-19-x.scm: Move to SLiM
Browse files Browse the repository at this point in the history
  • Loading branch information
Brett Gilio committed Apr 29, 2019
1 parent 658dcdb commit 64d389d
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions system-configuration/libre-system-4-19-x.scm
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@
#:use-module (gnu packages linux)
#:use-module (gnu packages ncurses)
#:use-module (gnu packages python)
#:use-module (gnu packages xorg))
#:use-module (gnu packages xorg)
#:use-module (srfi srfi-1))

(use-service-modules desktop)
(use-service-modules desktop xorg)
(use-package-modules certs gnome)

(operating-system
Expand Down Expand Up @@ -41,6 +42,7 @@
(packages (cons* nss-certs ;for HTTPS access
gvfs ;for user mounts
stumpwm
xauth
xterm
xrdb
xsetroot
Expand All @@ -50,7 +52,11 @@
python
%base-packages))

(services (cons* %desktop-services))
(services (cons* (service slim-service-type)
(remove (lambda (service)
(eq? (service-kind service)
gdm-service-type))
%desktop-services)))

;; Allow resolution of '.local' host names with mDNS.
(name-service-switch %mdns-host-lookup-nss))

0 comments on commit 64d389d

Please sign in to comment.