summaryrefslogtreecommitdiff
path: root/system-configuration.scm
diff options
context:
space:
mode:
Diffstat (limited to 'system-configuration.scm')
-rw-r--r--system-configuration.scm19
1 files changed, 11 insertions, 8 deletions
diff --git a/system-configuration.scm b/system-configuration.scm
index 006d633..bff6a6b 100644
--- a/system-configuration.scm
+++ b/system-configuration.scm
@@ -67,15 +67,18 @@
(append system-packages'
%base-packages))
+(define system-services
+ `(,(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)
+ ,(set-xorg-configuration (xorg-configuration (keyboard-layout keyboard-layout)))))
+
(define 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)
- ,(set-xorg-configuration (xorg-configuration (keyboard-layout keyboard-layout))))
+ (append system-services
%desktop-services))
(operating-system (locale locale)