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 @@
3;; for a "bare bones" setup, with no X11 display server. 3;; for a "bare bones" setup, with no X11 display server.
4 4
5(use-modules (gnu)) 5(use-modules (gnu))
6(use-service-modules networking ssh) 6(use-service-modules cuirass networking ssh databases)
7(use-package-modules screen ssh) 7(use-package-modules databases screen ssh)
8 8
9(operating-system 9(operating-system
10 (host-name "komputilo") 10 (host-name "komputilo")
@@ -48,8 +48,14 @@
48 ;; Add services to the baseline: a DHCP client and an SSH 48 ;; Add services to the baseline: a DHCP client and an SSH
49 ;; server. You may wish to add an NTP service here. 49 ;; server. You may wish to add an NTP service here.
50 (services (append (list (service dhcpcd-service-type) 50 (services (append (list (service dhcpcd-service-type)
51 (service cuirass-service-type
52 (cuirass-configuration
53 (specifications #~(list))))
54 (service postgresql-service-type
55 (postgresql-configuration
56 (postgresql postgresql-14)))
51 (service openssh-service-type 57 (service openssh-service-type
52 (openssh-configuration 58 (openssh-configuration
53 (openssh openssh-sans-x) 59 (openssh openssh-sans-x)
54 (port-number 2222)))) 60 (port-number 2222))))
55 %base-services))) 61 %base-services)))