ordo/examples/inventory.scm

23 lines
648 B
Scheme
Raw Normal View History

2025-06-01 15:50:12 +01:00
(use-modules (ordo connection)
(ordo inventory))
2025-07-04 17:13:14 +01:00
(defhost "little-rascal"
#:connection (local-connection)
#:tags '(#:linux #:guix))
2025-06-01 15:50:12 +01:00
2025-07-04 17:13:14 +01:00
(defhost "limiting-factor"
#:connection (ssh-connection #:host "limiting-factor" #:user "core")
#:tags '(#:linux #:coreos))
2025-06-01 15:50:12 +01:00
2025-07-04 17:13:14 +01:00
(defhost "screw-loose"
#:connection (ssh-connection #:host "screw-loose" #:user "core")
#:tags '(#:linux #:coreos))
2025-06-01 15:50:12 +01:00
2025-07-04 17:13:14 +01:00
(defhost "control-surface"
#:connection (ssh-connection #:host "control-surface" #:user "ray")
#:tags '(#:linux #:debian))
2025-07-04 17:13:14 +01:00
(defhost "cargo-cult"
#:connection (ssh-connection #:host "cargo-cult" #:user "ray")
#:tags '(#:linux #:synology))