From f3388b4dbf998d37df1cbd2ea5cc6b9964fdbd11 Mon Sep 17 00:00:00 2001 From: Kabbone Date: Sun, 24 Mar 2024 17:17:05 +0100 Subject: [PATCH] remoteClient disable distributed builds and remove substituter --- modules/hardware/remoteClient.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/modules/hardware/remoteClient.nix b/modules/hardware/remoteClient.nix index f08ffb3..f506df3 100644 --- a/modules/hardware/remoteClient.nix +++ b/modules/hardware/remoteClient.nix @@ -3,7 +3,7 @@ { nix = { - distributedBuilds = true; + distributedBuilds = false; buildMachines = [ { hostName = "hades"; system = "x86_64-linux"; @@ -22,7 +22,10 @@ ]; substituters = [ "https://cache.nixos.org" - "ssh-ng://nixremote@hades.home.opel-online.de" + #"ssh-ng://nixremote@hades.home.opel-online.de" + ]; + trusted-users = [ + "kabbone" ]; }; };