summaryrefslogtreecommitdiff
path: root/gnu/system/examples
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2025-09-05 17:18:18 +0200
committerLudovic Courtès <ludo@gnu.org>2025-09-05 17:25:39 +0200
commitd72eef9c918144bd892522722be71321d4a5ad97 (patch)
tree5fa04dde74fa9f4e04563a9614ca10b78af06a30 /gnu/system/examples
parent577f8fe1841a6316b36e4c7fdd93d38b9e082480 (diff)
services: cuirass: Add more configuration fields.
* gnu/services/cuirass.scm (<cuirass-configuration>)[parallel-evaluations] [evaluation-ttl, web-threads]: New fields. (cuirass-shepherd-service): Honor them. * doc/guix.texi (Continuous Integration): Document them. Change-Id: I33485b978d2a37ee93230b1d425731e6cb3b80e4
Diffstat (limited to 'gnu/system/examples')
-rw-r--r--gnu/system/examples/bare-bones.tmpl14
1 files changed, 10 insertions, 4 deletions
diff --git a/gnu/system/examples/bare-bones.tmpl b/gnu/system/examples/bare-bones.tmpl
index 6493855a082..16ba12604d2 100644
--- a/gnu/system/examples/bare-bones.tmpl
+++ b/gnu/system/examples/bare-bones.tmpl
@@ -3,8 +3,8 @@
;; for a "bare bones" setup, with no X11 display server.
(use-modules (gnu))
-(use-service-modules networking ssh)
-(use-package-modules screen ssh)
+(use-service-modules cuirass networking ssh databases)
+(use-package-modules databases screen ssh)
(operating-system
(host-name "komputilo")
@@ -48,8 +48,14 @@
;; Add services to the baseline: a DHCP client and an SSH
;; server. You may wish to add an NTP service here.
(services (append (list (service dhcpcd-service-type)
+ (service cuirass-service-type
+ (cuirass-configuration
+ (specifications #~(list))))
+ (service postgresql-service-type
+ (postgresql-configuration
+ (postgresql postgresql-14)))
(service openssh-service-type
(openssh-configuration
- (openssh openssh-sans-x)
- (port-number 2222))))
+ (openssh openssh-sans-x)
+ (port-number 2222))))
%base-services)))