mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Disable predictable interface names in tests
Apparently systemd is now smart enough to figure out predictable names for QEMU network interfaces. But since our tests expect them to be named eth0/eth1..., this is not desirable at the moment. http://hydra.nixos.org/build/10418789
This commit is contained in:
parent
660d38e838
commit
e7ab051cda
1 changed files with 2 additions and 0 deletions
|
@ -402,6 +402,8 @@ in
|
|||
# Speed up booting by not waiting for ARP.
|
||||
networking.dhcpcd.extraConfig = "noarp";
|
||||
|
||||
networking.usePredictableInterfaceNames = false;
|
||||
|
||||
system.requiredKernelConfig = with config.lib.kernelConfig;
|
||||
[ (isEnabled "VIRTIO_BLK")
|
||||
(isEnabled "VIRTIO_PCI")
|
||||
|
|
Loading…
Reference in a new issue