summaryrefslogtreecommitdiff
path: root/deployment/machine
diff options
context:
space:
mode:
authorMarek Paśnikowski <marek@marekpasnikowski.pl>2026-04-20 17:11:36 +0200
committerMarek Paśnikowski <marek@marekpasnikowski.pl>2026-04-20 17:22:20 +0200
commitda7ee0fa6680fee7cc1d750252c6bb4ef00595cb (patch)
treead4c47212b0c420f9964104371ab57629ca842a0 /deployment/machine
parent8915d2e55e18e1b15e9bbbbd18ea93459ebb7330 (diff)
move system modules to (deployment system) namespace
Diffstat (limited to 'deployment/machine')
-rw-r--r--deployment/machine/ssh.scm16
1 files changed, 8 insertions, 8 deletions
diff --git a/deployment/machine/ssh.scm b/deployment/machine/ssh.scm
index edeeffd..d6294f0 100644
--- a/deployment/machine/ssh.scm
+++ b/deployment/machine/ssh.scm
@@ -1,8 +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 ((deployment system aisaka)
+ #:prefix deployment:system:aisaka:)
+ #:use-module ((deployment system akashi)
+ #:prefix deployment:system:akashi:)
#:use-module ((gnu machine ssh)
#:prefix gnu:machine:ssh:))
@@ -12,8 +12,8 @@
(define-public aisaka-configuration
(gnu:machine:ssh:machine-ssh-configuration
- (host-name deployment:systems:aisaka:system-name)
- (system deployment:systems:aisaka:architecture)
+ (host-name deployment:system:aisaka:system-name)
+ (system deployment:system:aisaka:architecture)
(build-locally? #t)
(authorize? #t)
(allow-downgrades? #f)
@@ -27,8 +27,8 @@
(define-public akashi-configuration
(gnu:machine:ssh:machine-ssh-configuration
- (host-name deployment:systems:akashi:system-name)
- (system deployment:systems:akashi:architecture)
+ (host-name deployment:system:akashi:system-name)
+ (system deployment:system:akashi:architecture)
(build-locally? #t)
(authorize? #t)
(allow-downgrades? #f)