summaryrefslogtreecommitdiff
path: root/vm-deploy.scm
blob: 08dce6ce2187c6022fd953227810cecd5cbd4d6c (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 "localhost")
                       (system "x86_64-linux")
                       (port 22)
                       (host-key "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIN0aj062v8Mnxidud6DAyEN8XI8eCx+0fe6ad7QG1fXj")
                       (allow-downgrades? #t)))))