summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2017-01-21 14:58:25 +0100
committerFranz Pletz <fpletz@fnordicwalking.de>2017-01-21 20:41:11 +0100
commitab90eac835487f93c2c4b433d67c59035eec3e0e (patch)
tree1441721faf4e53eb4eaa87cbab3bd655d75baffb /nixos
parent664d1d6dc9c03bfff91b0d08ebf8127d95866530 (diff)
networking: fix typo in resolvconf option edns0
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/config/networking.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/config/networking.nix b/nixos/modules/config/networking.nix
index 9e7cfbd686cc4..426aaa34885ce 100644
--- a/nixos/modules/config/networking.nix
+++ b/nixos/modules/config/networking.nix
@@ -13,7 +13,7 @@ let
 
   resolvconfOptions = cfg.resolvconfOptions
     ++ optional cfg.dnsSingleRequest "single-request"
-    ++ optional cfg.dnsExtensionMechanism "ends0";
+    ++ optional cfg.dnsExtensionMechanism "edns0";
 in
 
 {