From deab8f8a2b20d03f21f1931554561e15d924c3a0 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Thu, 13 Nov 2025 12:03:31 +0100 Subject: [PATCH] feat(nixbuild): re-enable substituters configuration - Uncommented the substituters configuration in `nixbuild.nix`. - Restores distributed build functionality for remote machines. --- systems/nixbuild.nix | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/systems/nixbuild.nix b/systems/nixbuild.nix index 54ec7be..6fef254 100644 --- a/systems/nixbuild.nix +++ b/systems/nixbuild.nix @@ -30,14 +30,14 @@ ]; nix.settings = { - /* - substituters = [ - "https://cache.nixos.org" - "ssh-ng://harald@m4?ssh-key=/etc/ssh/nix-builder-key" - "ssh-ng://harald@rialo?ssh-key=/etc/ssh/nix-builder-key" - "ssh-ng://harald@sgx?ssh-key=/etc/ssh/nix-builder-key" - ]; - */ + + substituters = [ + "https://cache.nixos.org" + "ssh-ng://harald@m4?ssh-key=/etc/ssh/nix-builder-key" + "ssh-ng://harald@rialo?ssh-key=/etc/ssh/nix-builder-key" + "ssh-ng://harald@sgx?ssh-key=/etc/ssh/nix-builder-key" + ]; + builders-use-substitutes = true; };