From eade90b7979d67a07b6385bc1034b6bc9dfed64c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christina=20S=C3=B8rensen?= Date: Thu, 5 Sep 2024 07:56:31 +0200 Subject: [PATCH] fix: don't use `NIX_ALLOW_INSECURE=1` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix: #12 Signed-off-by: Christina Sørensen --- crates/nix-weather/src/nix.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/nix-weather/src/nix.rs b/crates/nix-weather/src/nix.rs index 80f05cc..13eb7ac 100644 --- a/crates/nix-weather/src/nix.rs +++ b/crates/nix-weather/src/nix.rs @@ -12,7 +12,6 @@ use std::{ pub fn get_requisites(host: &str, config_dir: &str) -> String { let get_drv_path = Command::new("nix") .current_dir(Path::new(config_dir)) - .env("NIXPKGS_ALLOW_INSECURE", "1") // FIXME Idk but fix it .args([ "build", "--impure",