summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--system-configuration.scm19
1 files changed, 11 insertions, 8 deletions
diff --git a/system-configuration.scm b/system-configuration.scm
index a76279a..e13f2c1 100644
--- a/system-configuration.scm
+++ b/system-configuration.scm
@@ -48,19 +48,22 @@
(cons* marek
%base-user-accounts))
+(define packages
+ (append (map (compose list
+ specification->package+output)
+ '("guile-spec"
+ "netcat-openbsd"
+ "nss-certs"
+ "trezord"
+ "trezord-udev-rules"))
+ %base-packages))
+
(operating-system (locale locale)
(timezone timezone)
(keyboard-layout keyboard-layout)
(host-name host-name)
(users users)
- (packages (append (map (compose list
- specification->package+output)
- '("guile-spec"
- "netcat-openbsd"
- "nss-certs"
- "trezord"
- "trezord-udev-rules"))
- %base-packages))
+ (packages packages)
(services (append `(,(service cups-service-type
(cups-configuration (extensions `(,cups-filters
,epson-inkjet-printer-escpr))