diff --git a/ofborg/src/nix.rs b/ofborg/src/nix.rs index fea8c74..3c14e3c 100644 --- a/ofborg/src/nix.rs +++ b/ofborg/src/nix.rs @@ -79,6 +79,9 @@ impl Operation { Operation::Evaluate => { command.args(&["--eval", "--strict", "--json", "--option", "experimental-features", "no-url-literals"]); } + Operation::Instantiate => { + command.args(&["--option", "experimental-features", "no-url-literals"]) + } _ => (), }; }