tasks.py: use copy instead of archive for deploy
this is faster but it assumes that the flake inputs can be substituted on the target
This commit is contained in:
parent
e41ce7ba70
commit
dabf0339b9
1 changed files with 6 additions and 2 deletions
8
tasks.py
8
tasks.py
|
@ -30,13 +30,17 @@ def deploy(c: Any, hosts: str) -> None:
|
|||
command = "sudo nixos-rebuild"
|
||||
target = f"{h.host}"
|
||||
|
||||
res = h.run_local(
|
||||
["nix", "flake", "archive", "--to", f"ssh://{target}", "--json"],
|
||||
res = subprocess.run(
|
||||
["nix", "flake", "metadata", "--json"],
|
||||
text=True,
|
||||
check=True,
|
||||
stdout=subprocess.PIPE,
|
||||
)
|
||||
data = json.loads(res.stdout)
|
||||
path = data["path"]
|
||||
|
||||
h.run_local(f"nix copy --to ssh://{target} {path}")
|
||||
|
||||
hostname = h.host.replace(".nix-community.org", "")
|
||||
h.run(
|
||||
f"{command} switch --option accept-flake-config true --flake {path}#{hostname}"
|
||||
|
|
Loading…
Add table
Reference in a new issue