nixos/networking: Fix typo in ipv6prefixLength.

Within the module it's referenced with an uppercase "P" and ipv6Address
also begins with an uppercase "A" after the "6", so let's make it
consistent.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
aszlig 2014-09-05 02:47:26 +02:00
parent fd9c8fa3dc
commit 141cb70d5c
No known key found for this signature in database
GPG Key ID: D0EBD0EC8C2DC961

View File

@ -108,7 +108,7 @@ let
'';
};
ipv6prefixLength = mkOption {
ipv6PrefixLength = mkOption {
default = 64;
example = 64;
type = types.int;