nixos-config/modules/home/nix/buildMachines/default.nix
Sridhar Ratnakumar 2d7423e07a phase 1
2025-11-21 13:40:35 -05: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
'';
};
}