From eafb8a30eb95b56c0de258aa08ecb24354188abf Mon Sep 17 00:00:00 2001 From: Marek Paśnikowski Date: Thu, 26 Mar 2026 10:51:27 +0100 Subject: implement deployment to akashi --- deployment/machine/ssh.scm | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'deployment/machine') diff --git a/deployment/machine/ssh.scm b/deployment/machine/ssh.scm index b63fde7..edeeffd 100644 --- a/deployment/machine/ssh.scm +++ b/deployment/machine/ssh.scm @@ -1,6 +1,8 @@ (define-module (deployment machine ssh) #:use-module ((deployment systems aisaka) #:prefix deployment:systems:aisaka:) + #:use-module ((deployment systems akashi) + #:prefix deployment:systems:akashi:) #:use-module ((gnu machine ssh) #:prefix gnu:machine:ssh:)) @@ -22,3 +24,19 @@ (session (open-machine-ssh-session* (@@ (gnu machine ssh) this-machine-ssh-configuration))) (host-key "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIM0Eh0q54myeSEironEP9DEKl+ownYuH7oSgAVuLIDNt marek@aisaka"))) + +(define-public akashi-configuration + (gnu:machine:ssh:machine-ssh-configuration + (host-name deployment:systems:akashi:system-name) + (system deployment:systems:akashi:architecture) + (build-locally? #t) + (authorize? #t) + (allow-downgrades? #f) + (safety-checks? #t) + (port 22) + (user "marek") + (identity "./id_ed25519") + (session (open-machine-ssh-session* (@@ (gnu machine ssh) + this-machine-ssh-configuration))) + (host-key "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICtEYtiph2TwshHHSQhLL7A2ZvFMCogWuI8vfS3jLQsm marek@akashi"))) + -- cgit v1.3