nix_eval_jobs: Remove --impure

Note that this still does not make flake evaluation pure in
nix-eval-jobs yet, since it forcibly resets `evalSettings.pureEval`
prior to starting the evaluation.
This commit is contained in:
Zhaofeng Li 2022-08-16 20:38:41 -06:00
parent c540e00861
commit 06168dabf3

View file

@ -86,7 +86,6 @@ impl DrvSetEvaluator for NixEvalJobs {
let mut command = Command::new(&self.executable);
command
.arg("--impure")
.arg("--workers")
.arg(self.workers.to_string())
.arg(&expr_file);