summaryrefslogtreecommitdiff
path: root/gnu/system/examples/bare-bones.tmpl
diff options
context:
space:
mode:
authorPierre Neidhardt <mail@ambrevar.xyz>2019-01-21 19:37:59 +0100
committerPierre Neidhardt <mail@ambrevar.xyz>2019-01-23 18:01:16 +0100
commit907dd32720cf7ae94876c1da2df775f524f5f795 (patch)
tree41d57085a2543741823ba9fd4533195634bbe41d /gnu/system/examples/bare-bones.tmpl
parentece2fd121866e4f46c5a4be92c6f09b6c1042ea1 (diff)
downloadguix-patches-907dd32720cf7ae94876c1da2df775f524f5f795.tar
guix-patches-907dd32720cf7ae94876c1da2df775f524f5f795.tar.gz
gnu: Replace all cons* with beginner-friendly (append (list ...)).
* gnu/system/examples/bare-bones.tmpl (services): Do it. * gnu/system/examples/beaglebone.tmpl (packages): Do it. (services): Do it. * gnu/system/examples/desktop.tmpl (packages): Do it. (services): Do it. * gnu/system/examples/lightweight-desktop.tmpl (file-systems): Do it. (packages): Do it. * gnu/system/examples/vm-image.tmpl (packages): Do it.
Diffstat (limited to 'gnu/system/examples/bare-bones.tmpl')
-rw-r--r--gnu/system/examples/bare-bones.tmpl10
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/system/examples/bare-bones.tmpl b/gnu/system/examples/bare-bones.tmpl
index 902dacbe57..a88bab034f 100644
--- a/gnu/system/examples/bare-bones.tmpl
+++ b/gnu/system/examples/bare-bones.tmpl
@@ -44,8 +44,8 @@
;; Add services to the baseline: a DHCP client and
;; an SSH server.
- (services (cons* (service dhcp-client-service-type)
- (service openssh-service-type
- (openssh-configuration
- (port-number 2222)))
- %base-services)))
+ (services (append (list (service dhcp-client-service-type)
+ (service openssh-service-type
+ (openssh-configuration
+ (port-number 2222))))
+ %base-services)))