config.nix: enable builders to use substitutes

This commit is contained in:
surtur 2022-05-25 18:48:40 +02:00
parent 3ed8a8ddd1
commit 233031c594
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

@ -33,4 +33,10 @@
pathsToLink = [ "/share" "/bin" "/etc" ]; pathsToLink = [ "/share" "/bin" "/etc" ];
}; };
}; };
nix.distributedBuilds = true;
# useful when the builder has a faster internet connection than yours
nix.extraOptions = ''
builders-use-substitutes = true
'';
} }