We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf64ce1 commit b9a0d12Copy full SHA for b9a0d12
src/website/shared/listeners/nix_evaluation.py
@@ -54,6 +54,13 @@ async def perform_evaluation(
54
settings.EVALUATION_GC_ROOTS_DIRECTORY,
55
"--expr",
56
evaluation_wrapper,
57
+ # write drv files to memory.
58
+ # it's a lot faster and there's no harm in losing them since we currently don't use them for anything
59
+ "--eval-store",
60
+ # TODO: create the setting and wire it up with the service module and deployment config.
61
+ # please document what the operator has to do and why
62
+ # should default to /nix/store since not every system will have the right stuff set up
63
+ settings.EVALUATION_STORE_DIR,
64
"--include",
65
f"nixpkgs={working_tree}",
66
]
0 commit comments