1
0
forked from clan/clan-core

fix: trying run_no_stdout with original show-config

This commit is contained in:
samrose 2024-06-13 18:44:50 -04:00
parent 5f22493361
commit 06bbae6d14

View File

@ -4,7 +4,7 @@ import tempfile
from pathlib import Path
from typing import Any
from .cmd import run
from .cmd import run, run_no_stdout
from .dirs import nixpkgs_flake, nixpkgs_source
@ -59,8 +59,8 @@ def nix_add_to_gcroots(nix_path: Path, dest: Path) -> None:
def nix_config() -> dict[str, Any]:
cmd = nix_command(["config", "show", "--json"])
proc = run(cmd)
cmd = nix_command(["show-config", "--json"])
proc = run_no_stdout(cmd)
data = json.loads(proc.stdout)
config = {}
for key, value in data.items():