We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6159224 commit fbc9895Copy full SHA for fbc9895
nixos-anywhere-pxe.py
@@ -19,6 +19,7 @@
19
20
FILE = Union[None, int, IO]
21
22
+NIXOS_ANYWHERE_SH = Path(__file__).parent.absolute() / "src/nixos-anywhere.sh"
23
24
def run(
25
cmd: Union[str, list[str]],
@@ -337,7 +338,7 @@ def nixos_anywhere(
337
338
[
339
# FIXME: path
340
"bash",
- "./src/nixos-remote.sh",
341
+ str(NIXOS_ANYWHERE_SH),
342
"--flake",
343
flake,
344
"-L",
0 commit comments