No more remote builds for orangepihole

This commit is contained in:
Chris Dombroski 2024-07-29 21:42:58 -04:00
parent e17e1ddd8c
commit 339e61914e

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, sops, ... }: { config, pkgs, ... }:
{ {
imports = [ # Include the results of the hardware scan. imports = [ # Include the results of the hardware scan.
@ -113,7 +113,7 @@
IdentitiesOnly yes IdentitiesOnly yes
IdentityFile ${config.sops.secrets."nixremote/sshkey".path} IdentityFile ${config.sops.secrets."nixremote/sshkey".path}
''; '';
nix.distributedBuilds = true; nix.distributedBuilds = false;
nix.settings.max-jobs = 0; #nix.settings.max-jobs = 0;
} }