Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
srid committed Aug 8, 2023
1 parent 9eccae9 commit 49855ec
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/nix/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,12 @@ pub async fn get_nix_config() -> Result<NixConfig, ServerFnError> {
pub async fn run_nix_show_config() -> Result<NixConfig, ServerFnError> {
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() {
Expand Down

0 comments on commit 49855ec

Please sign in to comment.