diff options
Diffstat (limited to 'deployment/machine.scm')
| -rw-r--r-- | deployment/machine.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/deployment/machine.scm b/deployment/machine.scm new file mode 100644 index 0000000..3ffc8c7 --- /dev/null +++ b/deployment/machine.scm @@ -0,0 +1,27 @@ +(define-module (deployment machine) + #:use-module ((deployment machine ssh) + #:prefix deployment:machine:ssh:) + #:use-module ((deployment system) + #:prefix deployment:system:) + #:use-module ((gnu machine) + #:prefix gnu:machine:) + #:use-module ((gnu machine ssh) + #:prefix gnu:machine:ssh:)) + +(define aisaka-machine + (gnu:machine:machine + (operating-system deployment:system:aisaka) + (environment gnu:machine:ssh:managed-host-environment-type) + (configuration deployment:machine:ssh:aisaka-configuration))) + +(define-public aisaka + (list aisaka-machine)) + +(define akashi-machine + (gnu:machine:machine + (operating-system deployment:system:akashi) + (environment gnu:machine:ssh:managed-host-environment-type) + (configuration deployment:machine:ssh:akashi-configuration))) + +(define-public akashi + (list akashi-machine)) |
