angine

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

deploy.scm (585B)


      1 (define-module (deploy)
      2   #:use-module (angine system)
      3 
      4   #:use-module (guix gexp)
      5   #:use-module (gnu machine)
      6   #:use-module (gnu machine ssh))
      7 
      8 (list (machine
      9        (operating-system %angine-operating-system)
     10        (environment managed-host-environment-type)
     11        (configuration (machine-ssh-configuration
     12 		       (host-name "xn--duch-perch-e7ag.fr")
     13 		       (host-key "ssh-ed25519
     14 AAAAC3NzaC1lZDI1NTE5AAAAIPBuM9aMwCbek1vpJaDnsnToeq0lKqRa5rQoTppqOEIB")
     15 		       (authorize? #t)
     16 		       (system "x86_64-linux")
     17 		       (user "root")
     18 		       (identity "./angine/angine")))))