diff options
Diffstat (limited to 'salamina-deploy.scm')
-rw-r--r-- | salamina-deploy.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/salamina-deploy.scm b/salamina-deploy.scm new file mode 100644 index 0000000..e770249 --- /dev/null +++ b/salamina-deploy.scm @@ -0,0 +1,23 @@ +;; 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))))) |