mirror of https://codeberg.org/anemofilia/zero
15 lines
382 B
Scheme
15 lines
382 B
Scheme
|
(define-module (buer build-machines)
|
||
|
#:use-module ((buer files ssh-keys) #:prefix ssh-key:)
|
||
|
#:use-module (guix gexp)
|
||
|
|
||
|
#:export (yumiko))
|
||
|
|
||
|
(define yumiko
|
||
|
#~(build-machine
|
||
|
(name "yumiko")
|
||
|
(systems (list "x86_64-linux"))
|
||
|
(host-key #$(plain-file-content ssh-key:yumiko.pub))
|
||
|
(private-key "/root/.ssh/id_ed25519")
|
||
|
(user "radio")
|
||
|
(port 2222)))
|