From 339e61914e5f9fc0cb6299f438654ede5d8c00dd Mon Sep 17 00:00:00 2001 From: Chris Dombroski Date: Mon, 29 Jul 2024 21:42:58 -0400 Subject: [PATCH] No more remote builds for orangepihole --- systems/orangepihole/configuration.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/systems/orangepihole/configuration.nix b/systems/orangepihole/configuration.nix index 5fe2295..1f50730 100644 --- a/systems/orangepihole/configuration.nix +++ b/systems/orangepihole/configuration.nix @@ -1,4 +1,4 @@ -{ config, lib, pkgs, sops, ... }: +{ config, pkgs, ... }: { imports = [ # Include the results of the hardware scan. @@ -113,7 +113,7 @@ IdentitiesOnly yes IdentityFile ${config.sops.secrets."nixremote/sshkey".path} ''; - nix.distributedBuilds = true; - nix.settings.max-jobs = 0; + nix.distributedBuilds = false; + #nix.settings.max-jobs = 0; }