* Add the rdnss daemon.

* Add the ndisc6 package to the system path if IPv6 is enabled.

svn path=/nixos/trunk/; revision=26496
This commit is contained in:
Eelco Dolstra
2011-03-24 16:23:28 +00:00
parent 69c4a662de
commit b2d6dfecbc
3 changed files with 51 additions and 1 deletions

View File

@@ -179,7 +179,9 @@ in
pkgs.nettools
pkgs.wirelesstools
pkgs.rfkill
] ++ optional (cfg.bridges != {}) [ pkgs.bridge_utils ];
]
++ optional (cfg.bridges != {}) pkgs.bridge_utils
++ optional cfg.enableIPv6 pkgs.ndisc6;
security.setuidPrograms = [ "ping" "ping6" ];