summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--system-configuration.scm13
1 files changed, 8 insertions, 5 deletions
diff --git a/system-configuration.scm b/system-configuration.scm
index 5872517..d096864 100644
--- a/system-configuration.scm
+++ b/system-configuration.scm
@@ -52,13 +52,16 @@
(compose list
specification->package+output))
+(define system-packages
+ '("guile-spec"
+ "netcat-openbsd"
+ "nss-certs"
+ "trezord"
+ "trezord-udev-rules"))
+
(define packages
(append (map list-to-package-output
- '("guile-spec"
- "netcat-openbsd"
- "nss-certs"
- "trezord"
- "trezord-udev-rules"))
+ system-packages)
%base-packages))
(operating-system (locale locale)