blob: 44056c36584abbb857ea7b00ce647a25de3dad27 (
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)
(target "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"))))))
|