Skip to content

Commit

Permalink
tasks.py: fix user for darwin deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
zowoq authored and zimbatm committed Mar 6, 2024
1 parent 8603c1d commit 30d1f74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def deploy(h: DeployHost) -> None:
command = "sudo nixos-rebuild"

res = h.run_local(
["nix", "flake", "archive", "--to", f"ssh://{h.host}", "--json"],
["nix", "flake", "archive", "--to", f"ssh://{h.user}@{h.host}", "--json"],
stdout=subprocess.PIPE,
)
data = json.loads(res.stdout)
Expand Down

0 comments on commit 30d1f74

Please sign in to comment.