From 3efbdb81ebaf03b4e36e93001f6039dcb0269c1c Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Tue, 21 May 2024 02:31:07 -0400 Subject: [PATCH] Infini-DL360: disable distributed builds --- hosts/Infini-DL360/default.nix | 2 ++ modules/global/nix.nix | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/hosts/Infini-DL360/default.nix b/hosts/Infini-DL360/default.nix index d817628..11ae832 100644 --- a/hosts/Infini-DL360/default.nix +++ b/hosts/Infini-DL360/default.nix @@ -22,6 +22,8 @@ info.loc.purdue = true; + nix.distributedBuilds = false; + modules = { boot.grub.enable = true; boot.timeout = 5; diff --git a/modules/global/nix.nix b/modules/global/nix.nix index d66ce34..4c66ca4 100644 --- a/modules/global/nix.nix +++ b/modules/global/nix.nix @@ -58,7 +58,7 @@ with lib; "home-manager=${inputs.home-manager}" ]; - distributedBuilds = true; + distributedBuilds = mkDefault true; extraOptions = '' builders-use-substitutes = true '';