aboutsummaryrefslogtreecommitdiff
;; SPDX-License-Identifier: CC0-1.0

;; Copyright (C) 2023-2024 W. Kosior <koszko@koszko.org>
;;
;; Available under the terms of Creative Commons Zero v1.0 Universal.

(use-modules ((gnu machine) #:select (machine))
             ((gnu machine ssh) #:select
              (managed-host-environment-type machine-ssh-configuration)))

(define %os
  (load (string-append (dirname (current-filename)) "/salamina.scm")))

(list (machine
       (operating-system %os)
       (environment managed-host-environment-type)
       (configuration
        (machine-ssh-configuration
         (host-name "188.68.237.248")
         (system "x86_64-linux")
         (port 10022)
         (host-key "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDXRhCcZaeOOCaA939KLx7gmOu9gAXQZk08WG1hKU0PM")
         (allow-downgrades? #t)))))