blob: b0b5f1d3db0f6f0a4bb4f5d80470d234731640f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
(define-module (gn services rn6-assembly-container))
(use-modules (gnu)
(gn packages bioinformatics)
(gn services rshiny))
(operating-system
(host-name "rn6-assembly")
(timezone "Etc/UTC")
(locale "en_US.utf8")
(bootloader (bootloader-configuration
(bootloader grub-bootloader)
(targets '("does-not-matter"))))
(file-systems %base-file-systems)
;; No firmware for VMs.
(firmware '())
;; We only need a few packages inside the container.
(packages '())
(services (list (service rshiny-service-type
(rshiny-configuration
(package rn6-assembly-error-app)
(binary "rn6-assembly-error-app"))))))
|