diff options
author | Philipp Herzog | 2022-11-18 19:46:37 +0100 |
---|---|---|
committer | GitHub | 2022-11-18 19:46:37 +0100 |
commit | 2a3c5f70eee04a465aa534d8bd4fcc9bb3c4a8ce (patch) | |
tree | 105f43d6190a650b151be3826a101e289b730703 /README.md | |
parent | be40823735bbdc40c1f6b7725c8b74d5a85d8023 (diff) | |
parent | d0c86650424ae60209767a90d5c93012c95b0fec (diff) |
Merge pull request #175 from serokell/philtaken/remote-building
Add option to build on the target host
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -183,6 +183,11 @@ This is a set of options that can be put in any of the above definitions, with t # If not specified, this will default to `/tmp` # (if `magicRollback` is in use, this _must_ be writable by `user`) tempPath = "/home/someuser/.deploy-rs"; + + # Build the derivation on the target system. + # Will also fetch all external dependencies from the target system's substituters. + # This default to `false` + remoteBuild = true; } ``` |