feat(nixbuild): re-enable substituters configuration

- Uncommented the substituters configuration in `nixbuild.nix`.
- Restores distributed build functionality for remote machines.
This commit is contained in:
Harald Hoyer 2025-11-13 12:03:31 +01:00
parent 76c3fac834
commit deab8f8a2b

View file

@ -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;
};