summaryrefslogtreecommitdiff
path: root/system-configuration.scm
diff options
context:
space:
mode:
Diffstat (limited to 'system-configuration.scm')
-rw-r--r--system-configuration.scm26
1 files changed, 11 insertions, 15 deletions
diff --git a/system-configuration.scm b/system-configuration.scm
index ff08f01..4af83c1 100644
--- a/system-configuration.scm
+++ b/system-configuration.scm
@@ -38,21 +38,17 @@
"trezord"
"trezord-udev-rules"))
%base-packages))
- (services
- (append
- `(,(service cups-service-type
- (cups-configuration (extensions `(,cups-filters
- ,epson-inkjet-printer-escpr))
- (web-interface? #t)))
- ,(service openssh-service-type)
- ,(service gnome-desktop-service-type)
- ,(service tor-service-type
- (tor-configuration (config-file (local-file "torrc"))
- (control-socket? #t)))
- ,(set-xorg-configuration
- (xorg-configuration (keyboard-layout keyboard-layout)))
- ,(udev-rules-service 'trezord trezord-udev-rules))
- %desktop-services))
+ (services (cons* (service cups-service-type
+ (cups-configuration (extensions `(,cups-filters
+ ,epson-inkjet-printer-escpr))
+ (web-interface? #t)))
+ (service openssh-service-type)
+ (service tor-service-type
+ (tor-configuration (config-file (local-file "torrc"))
+ (control-socket? #t)))
+ (udev-rules-service 'trezord trezord-udev-rules)
+ (modify-services %desktop-services
+ (delete gdm-service-type))))
(bootloader (bootloader-configuration (bootloader grub-bootloader)
(targets '("/dev/sda"))
(keyboard-layout keyboard-layout)))