fix: formatting cli command correctly

This commit is contained in:
samrose 2024-06-13 12:59:26 -04:00
parent 56a4caf39b
commit 5f22493361

View File

@ -59,7 +59,7 @@ def nix_add_to_gcroots(nix_path: Path, dest: Path) -> None:
def nix_config() -> dict[str, Any]:
cmd = nix_command(["config show", "--json"])
cmd = nix_command(["config", "show", "--json"])
proc = run(cmd)
data = json.loads(proc.stdout)
config = {}