+1
-1
nixos/doc/manual/configuration/ipv4-config.xml
+1
-1
nixos/doc/manual/configuration/ipv4-config.xml
···+networking.interfaces.eth0.ipv4.addresses = [ { address = "192.168.1.2"; prefixLength = 24; } ];
+1
-1
nixos/doc/manual/configuration/ipv6-config.xml
+1
-1
nixos/doc/manual/configuration/ipv6-config.xml
···+networking.interfaces.eth0.ipv6.addresses = [ { address = "fe00:aa:bb:cc::2"; prefixLength = 64; } ];
+36
-4
nixos/doc/manual/release-notes/rl-1803.xml
+36
-4
nixos/doc/manual/release-notes/rl-1803.xml
···-The option <option>services.xserver.desktopManager.default</option> is now <literal>none</literal> by default.-To explicitly run a plain X session without and DM or WM, the newly introduced option <option>services.xserver.plainX</option>
+2
-2
nixos/lib/build-vms.nix
+2
-2
nixos/lib/build-vms.nix
······
+1
-1
nixos/modules/services/networking/dhcpcd.nix
+1
-1
nixos/modules/services/networking/dhcpcd.nix
···-map (i: i.name) (filter (i: if i.useDHCP != null then !i.useDHCP else i.ip4 != [ ] || i.ipAddress != null) interfaces)+map (i: i.name) (filter (i: if i.useDHCP != null then !i.useDHCP else i.ipv4.addresses != [ ]) interfaces)
+3
-4
nixos/modules/services/security/hologram-agent.nix
+3
-4
nixos/modules/services/security/hologram-agent.nix
···
+48
-29
nixos/modules/tasks/network-interfaces-scripted.nix
+48
-29
nixos/modules/tasks/network-interfaces-scripted.nix
······
+2
-8
nixos/modules/tasks/network-interfaces-systemd.nix
+2
-8
nixos/modules/tasks/network-interfaces-systemd.nix
···
+87
-51
nixos/modules/tasks/network-interfaces.nix
+87
-51
nixos/modules/tasks/network-interfaces.nix
·································The name of networking.interfaces."${i.name}" is too long, it needs to be less than 16 characters.···
+1
-1
nixos/modules/virtualisation/virtualbox-host.nix
+1
-1
nixos/modules/virtualisation/virtualbox-host.nix
···+networking.interfaces.vboxnet0.ipv4.addresses = { address = "192.168.56.1"; prefixLength = 24; };
+3
-3
nixos/tests/bittorrent.nix
+3
-3
nixos/tests/bittorrent.nix
···+listening_ip=${(pkgs.lib.head nodes.router.config.networking.interfaces.eth2.ipv4.addresses).address}/24······-$tracker->succeed("transmission-create /tmp/data/test.tar.bz2 -p -t http://${(pkgs.lib.head nodes.tracker.config.networking.interfaces.eth1.ip4).address}:6969/announce -o /tmp/test.torrent");+$tracker->succeed("transmission-create /tmp/data/test.tar.bz2 -p -t http://${(pkgs.lib.head nodes.tracker.config.networking.interfaces.eth1.ipv4.addresses).address}:6969/announce -o /tmp/test.torrent");
+6
-3
nixos/tests/cjdns.nix
+6
-3
nixos/tests/cjdns.nix
·········
+2
-2
nixos/tests/containers-bridge.nix
+2
-2
nixos/tests/containers-bridge.nix
···
+3
-3
nixos/tests/containers-extra_veth.nix
+3
-3
nixos/tests/containers-extra_veth.nix
···
+3
-3
nixos/tests/containers-hosts.nix
+3
-3
nixos/tests/containers-hosts.nix
···
+4
-4
nixos/tests/containers-macvlans.nix
+4
-4
nixos/tests/containers-macvlans.nix
·········
+12
-12
nixos/tests/containers-physical_interfaces.nix
+12
-12
nixos/tests/containers-physical_interfaces.nix
············
+1
-1
nixos/tests/containers-reloadable.nix
+1
-1
nixos/tests/containers-reloadable.nix
+7
-7
nixos/tests/containers-restart_networking.nix
+7
-7
nixos/tests/containers-restart_networking.nix
············
+4
-4
nixos/tests/ferm.nix
+4
-4
nixos/tests/ferm.nix
···+interfaces.eth1.ipv4.addresses = mkOverride 0 [ { address = "192.168.1.2"; prefixLength = 24; } ];···+interfaces.eth1.ipv4.addresses = mkOverride 0 [ { address = "192.168.1.1"; prefixLength = 24; } ];
+1
-3
nixos/tests/initrd-network-ssh/default.nix
+1
-3
nixos/tests/initrd-network-ssh/default.nix
···
+1
-1
nixos/tests/nat.nix
+1
-1
nixos/tests/nat.nix
···
+95
-34
nixos/tests/networking.nix
+95
-34
nixos/tests/networking.nix
··········································$client->waitUntilSucceeds("! ip route get fd00:1234:5678:1::1 | grep -q ':[a-f0-9]*ff:fe[a-f0-9]*:'");
+14
-8
nixos/tests/nsd.nix
+14
-8
nixos/tests/nsd.nix
···
+1
-1
nixos/tests/quagga.nix
+1
-1
nixos/tests/quagga.nix
···+ifAddr = node: iface: (pkgs.lib.head node.config.networking.interfaces.${iface}.ipv4.addresses).address;