23 lines
820 B
Scheme
23 lines
820 B
Scheme
(use-modules (ordo connection)
|
|
(ordo inventory))
|
|
|
|
(list
|
|
(host #:name "root@little-rascal"
|
|
#:connection (local-connection #:become? #t)
|
|
#:tags '(#:linux #:guix))
|
|
|
|
(host #:name "root@limiting-factor"
|
|
#:connection (ssh-connection #:host "limiting-factor" #:user "core" #:become? #t)
|
|
#:tags '(#:linux #:coreos))
|
|
|
|
(host #:name "root@screw-loose"
|
|
#:connection (ssh-connection #:host "screw-loose" #:user "core" #:become? #t)
|
|
#:tags '(#:linux #:coreos))
|
|
|
|
(host #:name "root@control-surface"
|
|
#:connection (ssh-connection #:host "control-surface" #:user "ray" #:become? #t)
|
|
#:tags '(#:linux #:debian))
|
|
|
|
(host #:name "root@cargo-cult"
|
|
#:connection (ssh-connection #:host "cargo-cult" #:user "ray" #:become? #t)
|
|
#:tags '(#:linux #:synology)))
|