summaryrefslogtreecommitdiff
path: root/deployment/machine.scm
diff options
context:
space:
mode:
Diffstat (limited to 'deployment/machine.scm')
-rw-r--r--deployment/machine.scm18
1 files changed, 18 insertions, 0 deletions
diff --git a/deployment/machine.scm b/deployment/machine.scm
new file mode 100644
index 0000000..28e303b
--- /dev/null
+++ b/deployment/machine.scm
@@ -0,0 +1,18 @@
+(define-module (deployment machine)
+ #:use-module ((deployment machine ssh)
+ #:prefix deployment:machine:ssh:)
+ #:use-module ((deployment systems aisaka)
+ #:prefix deployment:systems:aisaka:)
+ #: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:systems:aisaka:system)
+ (environment gnu:machine:ssh:managed-host-environment-type)
+ (configuration deployment:machine:ssh:aisaka-configuration)))
+
+(define-public aisaka
+ (list aisaka-machine))