From 3d6fc8a8a2d3393b578b00e6242274834c110cc7 Mon Sep 17 00:00:00 2001 From: Timo Wilken Date: Sun, 4 Jun 2023 22:57:19 +0200 Subject: Fix typo in offloading setup Also, only offload to vin at home, not lud, to avoid having to upload stuff over a slow link. --- tw/system/lap.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tw/system/lap.scm') 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) -- cgit v1.2.3