summary refs log tree commit diff
path: root/nixos/modules/tasks
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2014-09-05 02:47:26 +0200
committeraszlig <aszlig@redmoonstudios.org>2014-09-05 02:54:39 +0200
commit141cb70d5c1f92fdbdb91b7929567bb144304f88 (patch)
tree67ac625891117e3c6b5a104fce1df81373b06947 /nixos/modules/tasks
parentfd9c8fa3dcabf4a9def05779c6b2d837e0d8d183 (diff)
downloadnixlib-141cb70d5c1f92fdbdb91b7929567bb144304f88.tar
nixlib-141cb70d5c1f92fdbdb91b7929567bb144304f88.tar.gz
nixlib-141cb70d5c1f92fdbdb91b7929567bb144304f88.tar.bz2
nixlib-141cb70d5c1f92fdbdb91b7929567bb144304f88.tar.lz
nixlib-141cb70d5c1f92fdbdb91b7929567bb144304f88.tar.xz
nixlib-141cb70d5c1f92fdbdb91b7929567bb144304f88.tar.zst
nixlib-141cb70d5c1f92fdbdb91b7929567bb144304f88.zip
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>
Diffstat (limited to 'nixos/modules/tasks')
-rw-r--r--nixos/modules/tasks/network-interfaces.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/tasks/network-interfaces.nix b/nixos/modules/tasks/network-interfaces.nix
index 868039177d87..97b37b0714cd 100644
--- a/nixos/modules/tasks/network-interfaces.nix
+++ b/nixos/modules/tasks/network-interfaces.nix
@@ -108,7 +108,7 @@ let
         '';
       };
 
-      ipv6prefixLength = mkOption {
+      ipv6PrefixLength = mkOption {
         default = 64;
         example = 64;
         type = types.int;