Hello all,
I’m attempting to get all of my organization’s nix derivations building remotely, on a specific build server. To facilitate this, I’ve been going through the derivations and adding requiredSystemFeatures = [ "our_org_name" ];
to the derivations, (as described here: Remote Builds - Nix Reference Manual, although, this question could apply to any generic derivation setting, like enableParallelBuilding
).
Some of the derivations we are using are trivial builders (either defined by ourselves, or as part of third-party derivations), like runCommand
. Is there a way to have these also built remotely? There is no obvious way to have them use the requiredSystemFeatures
setting. If they are our own, they can be re-written as derivations, but if third-party this is a little more complex.