diff --git a/crates/core/src/commands/common.rs b/crates/core/src/commands/common.rs index d69abac..06ff0ea 100644 --- a/crates/core/src/commands/common.rs +++ b/crates/core/src/commands/common.rs @@ -145,6 +145,7 @@ pub async fn evaluate_hive_attribute( "flakes", "eval", "--json", + "--no-write-lock-file", ]); command_string.opt_arg(modifiers.show_trace, "--show-trace"); command_string.opt_arg(modifiers.print_build_logs, "--print-build-logs"); diff --git a/crates/core/src/hive/mod.rs b/crates/core/src/hive/mod.rs index e34e409..dce0a68 100644 --- a/crates/core/src/hive/mod.rs +++ b/crates/core/src/hive/mod.rs @@ -276,6 +276,7 @@ impl HiveLocation { "--extra-experimental-features", "flakes", "--json", + "--no-write-lock-file", ]); command_string.arg(&uri); diff --git a/crates/core/src/hive/steps/build.rs b/crates/core/src/hive/steps/build.rs index 7953a60..0745d06 100644 --- a/crates/core/src/hive/steps/build.rs +++ b/crates/core/src/hive/steps/build.rs @@ -181,6 +181,7 @@ impl ExecuteStep for Build { "build", "--no-link", "--print-out-paths", + "--no-write-lock-file", ]); command_string.opt_arg(ctx.modifiers.print_build_logs, "--print-build-logs"); command_string.arg(&attribute);