diff options
| author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2026-03-26 10:51:27 +0100 |
|---|---|---|
| committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2026-03-26 11:32:02 +0100 |
| commit | eafb8a30eb95b56c0de258aa08ecb24354188abf (patch) | |
| tree | 7fb320d5cef69e5c9f31ae2802ce9116817f06dd /deployment/machine.scm | |
| parent | 6f2c69d63e6b0cc7f16a5978f4b52a8f26619c25 (diff) | |
implement deployment to akashi
Diffstat (limited to 'deployment/machine.scm')
| -rw-r--r-- | deployment/machine.scm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/deployment/machine.scm b/deployment/machine.scm index 28e303b..f8a4112 100644 --- a/deployment/machine.scm +++ b/deployment/machine.scm @@ -3,6 +3,8 @@ #:prefix 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) #:prefix gnu:machine:) #:use-module ((gnu machine ssh) @@ -16,3 +18,12 @@ (define-public aisaka (list aisaka-machine)) + +(define akashi-machine + (gnu:machine:machine + (operating-system deployment:systems:akashi:system) + (environment gnu:machine:ssh:managed-host-environment-type) + (configuration deployment:machine:ssh:akashi-configuration))) + +(define-public akashi + (list akashi-machine)) |
