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:
parent
fd9c8fa3dc
commit
141cb70d5c
|
@ -108,7 +108,7 @@ let
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
ipv6prefixLength = mkOption {
|
ipv6PrefixLength = mkOption {
|
||||||
default = 64;
|
default = 64;
|
||||||
example = 64;
|
example = 64;
|
||||||
type = types.int;
|
type = types.int;
|
||||||
|
|
Loading…
Reference in New Issue