diff options
| author | Florian Klink <flokli@flokli.de> | 2025-08-10 16:06:57 +0200 |
|---|---|---|
| committer | Florian Klink <flokli@flokli.de> | 2025-08-10 16:30:52 +0200 |
| commit | b33575d05d8c00c4d9763c68e3d42aefa36d7fa0 (patch) | |
| tree | d8e858bb175ccde3a2af6a676be43a0aceb71b46 | |
| parent | workflows/pr: run in pull_request context to test actions/get-merge-commit (#... (diff) | |
| download | nixpkgs-b33575d05d8c00c4d9763c68e3d42aefa36d7fa0.tar.gz | |
nixosTests.tayga: set hostName
router_systemd and router_nixos are not valid hostnames and get ignored,
showing a warning. Set them to something different instead.
| -rw-r--r-- | nixos/tests/tayga.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/nixos/tests/tayga.nix b/nixos/tests/tayga.nix index 32512224bb58..fa439b19f9b9 100644 --- a/nixos/tests/tayga.nix +++ b/nixos/tests/tayga.nix @@ -87,6 +87,7 @@ ]; networking = { + hostName = "router-systemd"; useDHCP = false; useNetworkd = true; firewall.enable = false; @@ -152,6 +153,7 @@ ]; networking = { + hostName = "router-nixos"; useDHCP = false; firewall.enable = false; interfaces.eth1 = lib.mkForce { |
