2025-06-01 15:50:12 +01:00
|
|
|
(use-modules (ordo connection)
|
|
|
|
(ordo inventory))
|
|
|
|
|
|
|
|
(list
|
2025-06-07 16:25:31 +01:00
|
|
|
(host #:name "little-rascal"
|
2025-06-01 15:50:12 +01:00
|
|
|
#: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"
|
2025-06-07 16:25:31 +01:00
|
|
|
#:connection (ssh-connection "control-surface" #:user "ray")
|
|
|
|
#:tags '(#:linux #:debian))
|
|
|
|
|
|
|
|
(host #:name "cargo-cult"
|
|
|
|
#:connection (ssh-connection "cargo-cult" #:user "ray")
|
|
|
|
#:tags '(#:linux #:synology)))
|