blob: 3ffc8c71632a7fdd44a1f861fcf414926482e20e (
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
25
26
27
|
(define-module (deployment machine)
#:use-module ((deployment machine ssh)
#:prefix deployment:machine:ssh:)
#:use-module ((deployment system)
#:prefix deployment:system:)
#:use-module ((gnu machine)
#:prefix gnu:machine:)
#:use-module ((gnu machine ssh)
#:prefix gnu:machine:ssh:))
(define aisaka-machine
(gnu:machine:machine
(operating-system deployment:system:aisaka)
(environment gnu:machine:ssh:managed-host-environment-type)
(configuration deployment:machine:ssh:aisaka-configuration)))
(define-public aisaka
(list aisaka-machine))
(define akashi-machine
(gnu:machine:machine
(operating-system deployment:system:akashi)
(environment gnu:machine:ssh:managed-host-environment-type)
(configuration deployment:machine:ssh:akashi-configuration)))
(define-public akashi
(list akashi-machine))
|