ALPHA: wire is a tool to deploy nixos systems
wire.althaea.zone/
1# SPDX-License-Identifier: AGPL-3.0-or-later
2# Copyright 2024-2025 wire Contributors
3
4from typing import TYPE_CHECKING
5
6if TYPE_CHECKING:
7 from test_driver.machine import Machine
8
9 deployer: Machine = None # type: ignore[invalid-assignment]
10 TEST_DIR = ""
11
12# typing-end
13
14deployer.succeed(
15 f"echo @tag | wire apply --on deployer --no-progress --path {TEST_DIR}/hive.nix --no-keys -vvv >&2"
16)
17deployer.succeed("test -f /etc/a")