From fcbb3089b024af6bf4f0139d498d2272d8aede19 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone <exarkun@twistedmatrix.com> Date: Fri, 27 Sep 2019 14:12:40 -0400 Subject: [PATCH] don't run a dhcp client, we have static ips --- nixos/modules/tests/private-storage.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/tests/private-storage.nix b/nixos/modules/tests/private-storage.nix index e17f8b49..89a63747 100644 --- a/nixos/modules/tests/private-storage.nix +++ b/nixos/modules/tests/private-storage.nix @@ -29,6 +29,7 @@ let # I thought we might need to statically asssign IPs but we can just use # the node names, "introducer", etc, instead. networking.firewall.enable = false; + networking.dhcpcd.enable = false; }; in # https://nixos.org/nixos/manual/index.html#sec-nixos-tests -- GitLab