20 lines
557 B
Scheme
20 lines
557 B
Scheme
|
(use-modules (ordo connection)
|
||
|
(ordo inventory))
|
||
|
|
||
|
(list
|
||
|
(host #:name "localhost"
|
||
|
#:connection (local-connection)
|
||
|
#:tags '(#:linux #:guix))
|
||
|
|
||
|
(host #:name "limiting-factor"
|
||
|
#:connection (ssh-connection "limiting-factor" #:user "core")
|
||
|
#:tags '(#:linux #:coreos))
|
||
|
|
||
|
(host #:name "screw-loose"
|
||
|
#:connection (ssh-connection "screw-loose" #:user "core")
|
||
|
#:tags '(#:linux #:coreos))
|
||
|
|
||
|
(host #:name "control-surface"
|
||
|
#:connection (ssh-connection "control-surface")
|
||
|
#:tags '(#:linux #:debian)))
|