From beef106b41d0971c3a0a063f56766ff87c93b18f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christina=20S=C3=B8rensen?= Date: Sun, 8 Sep 2024 14:36:18 +0200 Subject: [PATCH] fix: actually cache evals MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Christina Sørensen --- crates/nix-weather/src/nix.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/crates/nix-weather/src/nix.rs b/crates/nix-weather/src/nix.rs index 783327b..fe8c6ac 100644 --- a/crates/nix-weather/src/nix.rs +++ b/crates/nix-weather/src/nix.rs @@ -14,7 +14,6 @@ pub fn get_requisites(host: &str, config_dir: &str) -> String { .current_dir(Path::new(config_dir)) .args([ "build", - "--impure", "--quiet", &format!( "./#nixosConfigurations.{}.config.system.build.toplevel", @@ -22,9 +21,6 @@ pub fn get_requisites(host: &str, config_dir: &str) -> String { ), "--dry-run", "--json", - "--option", - "eval-cache", - "true", ]) .output() .unwrap();