nixos-config/modules/home/all/buildMachines/default.nix
Sridhar Ratnakumar ec07b8ccf1 more generaly
2025-10-30 18:13:23 -04:00

13 lines
312 B
Nix

{ pkgs, lib, ... }:
{
nix = {
package = lib.mkDefault pkgs.nix;
enable = true;
distributedBuilds = true;
extraOptions = ''
# Let remote builders download from cache directly.
# This is to avoid download-cum-copy on main builder.
builders-use-substitutes = true
'';
};
}