ordo/examples/inventory.scm

24 lines
702 B
Scheme
Raw Permalink Normal View History

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