summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorPierre Bourdon <delroth@gmail.com>2019-02-11 03:06:16 +0100
committerPierre Bourdon <delroth@gmail.com>2019-02-11 03:12:56 +0100
commitf90a60a33c77245e53aea93807598ad7aa7b84a5 (patch)
treee43df18fb80af7721f2b28290df0a06601579247 /nixos
parent4b959cd354088557a98691be8bf27e189fa12aa9 (diff)
downloadnixpkgs-f90a60a33c77245e53aea93807598ad7aa7b84a5.tar
nixpkgs-f90a60a33c77245e53aea93807598ad7aa7b84a5.tar.gz
nixpkgs-f90a60a33c77245e53aea93807598ad7aa7b84a5.tar.bz2
nixpkgs-f90a60a33c77245e53aea93807598ad7aa7b84a5.tar.lz
nixpkgs-f90a60a33c77245e53aea93807598ad7aa7b84a5.tar.xz
nixpkgs-f90a60a33c77245e53aea93807598ad7aa7b84a5.tar.zst
nixpkgs-f90a60a33c77245e53aea93807598ad7aa7b84a5.zip
nixos/tests/ndppd: fix eval warnings
trace: warning: The options services.ndppd.interface and services.ndppd.network will probably be removed soon,
please use services.ndppd.proxies.<interface>.rules.<network> instead.
Diffstat (limited to 'nixos')
-rw-r--r--nixos/tests/ndppd.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/nixos/tests/ndppd.nix b/nixos/tests/ndppd.nix
index 9f24eb6d9d4..c53ff93a91f 100644
--- a/nixos/tests/ndppd.nix
+++ b/nixos/tests/ndppd.nix
@@ -37,8 +37,7 @@ import ./make-test.nix ({ pkgs, lib, ...} : {
       };
       services.ndppd = {
         enable = true;
-        interface = "eth1";
-        network = "fd42::/112";
+        proxies."eth1".rules."fd42::/112" = {};
       };
       containers.client = {
         autoStart = true;