diff --git a/src/nix/config.rs b/src/nix/config.rs index c8f11e73..3a4937a8 100644 --- a/src/nix/config.rs +++ b/src/nix/config.rs @@ -61,7 +61,12 @@ pub async fn get_nix_config() -> Result { pub async fn run_nix_show_config() -> Result { use tokio::process::Command; let out = Command::new("nix") - .args(vec!["--extra-experimental-features", "nix-command", "show-config", "--json"]) + .args(vec![ + "--extra-experimental-features", + "nix-command", + "show-config", + "--json", + ]) .output() .await?; if out.status.success() {