summaryrefslogtreecommitdiff
path: root/tw
diff options
context:
space:
mode:
authorTimo Wilken2023-06-04 22:57:19 +0200
committerTimo Wilken2023-06-04 22:57:19 +0200
commit3d6fc8a8a2d3393b578b00e6242274834c110cc7 (patch)
treed5c5daaa9406f1627369f4a60a6ee98af7463241 /tw
parentcfe57d1d90e6b7d3041e6ad43f93d407a10bd210 (diff)
Fix typo in offloading setup
Also, only offload to vin at home, not lud, to avoid having to upload stuff over a slow link.
Diffstat (limited to 'tw')
-rw-r--r--tw/system/lap.scm6
1 files changed, 3 insertions, 3 deletions
diff --git a/tw/system/lap.scm b/tw/system/lap.scm
index 4c63da44..be1cc86d 100644
--- a/tw/system/lap.scm
+++ b/tw/system/lap.scm
@@ -371,7 +371,7 @@ support extra features (acr, pmu, gr).")
(scheme-file "machines.scm"
#~(let ((lud (build-machine
(name "lud.twilken.net")
- (systems '("x64_64-linux"))
+ (systems '("x86_64-linux"))
(port '#$(assoc-ref %ssh-ports "lud.twilken.net"))
(host-key "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGqXbxv3a2bZyGjnEirVCMtRBeLKW/ha8ULSR9Xye4Z1")
(user "timo")
@@ -379,7 +379,7 @@ support extra features (acr, pmu, gr).")
(speed .5))) ; 4 cores, 8 GB RAM
(vin (build-machine
(name "vin.twilken.net")
- (systems '("x64_64-linux"))
+ (systems '("x86_64-linux"))
(port '#$(assoc-ref %ssh-ports "vin.twilken.net"))
(host-key "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEpdfKxzoCwg53TKPF5YxgUwhGF+bELAyBGdxagQroJ")
(user "timo")
@@ -395,7 +395,7 @@ support extra features (acr, pmu, gr).")
(close-pipe pipe)
;; Only offload to vin when at home, as the network connection is too bad otherwise.
(if at-home?
- (list lud vin)
+ (list vin)
(list lud))))))
(modify-services (append %system-channel-services %desktop-services)