guix-machines/deploy/cloud0-home-rekahsoft-ca.scm
Collin J. Doering 62fe49c921
Move machine specification outside of channel
'guix deploy' would not function when machine-ssh-configuration's identity cannot be
specified relative to the file where its defined.
2022-03-22 22:08:58 -04:00

15 lines
537 B
Scheme

(use-modules
(rekahsoft guix-config vms cloud0-home-rekahsoft-ca))
(list
(machine
(operating-system system)
(environment managed-host-environment-type)
(configuration (machine-ssh-configuration
(host-name "cloud0.home.rekahsoft.ca")
(host-key "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINwGi4YmUyLgpmFxJzGQF5Ju7CL8d2Wa2VtHMZGms0KO root@(none)")
(system "x86_64-linux")
(user "auto")
(identity ".deploy-key/key")
(port 22)))))