2
0
Fork 0
mirror of git://git.savannah.gnu.org/guix/maintenance.git synced 2023-12-14 03:33:04 +01:00

hydra: Turn overdrive1 config into a deployable machine config.

* hydra/overdrive1.scm: Rename to...
* hydra/deploy-overdrive1.scm: ... this.  Wrap the operating system
into a <machine> record.
This commit is contained in:
Maxim Cournoyer 2022-09-23 14:11:47 -04:00
parent 8cd6fbee6d
commit bcf7692d41
No known key found for this signature in database
GPG key ID: 1260E46482E63562
2 changed files with 14 additions and 4 deletions

View file

@ -0,0 +1,14 @@
(use-modules (sysadmin overdrive))
(list
(machine
(operating-system (overdrive-system "overdrive1"
#:wireguard-ip "10.0.0.3/32"))
(environment managed-host-environment-type)
(configuration
(machine-ssh-configuration
(host-name "overdrive1")
(user (getenv "USER"))
(build-locally? #t)
(host-key "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPf2f93c90oi9s9qGVGWC3sDgG7kEBvIEwR021NsfG+z")
(system "aarch64-linux")))))

View file

@ -1,4 +0,0 @@
(use-modules (sysadmin overdrive))
(overdrive-system "overdrive1"
#:wireguard-ip "10.0.0.3/32")