summaryrefslogtreecommitdiff
path: root/vm-deploy.scm
blob: ec169fb6d3d94fa11ac8ca69a64383b162624252 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
(define %os
  (load (string-append (dirname (current-filename)) "/vm.scm")))

(list (machine
       (operating-system %os)
       (environment managed-host-environment-type)
       (configuration (machine-ssh-configuration
                       (host-name "ctftilde.koszko.org")
                       (system "x86_64-linux")
                       (port 22)
                       (host-key "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAII6BoIa4pfY/WCGqNTxRdobteq3J5PYELz/slkjF7Zvd")
                       (allow-downgrades? #t)))))