From ab90eac835487f93c2c4b433d67c59035eec3e0e Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Sat, 21 Jan 2017 14:58:25 +0100 Subject: [PATCH] networking: fix typo in resolvconf option edns0 --- nixos/modules/config/networking.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/config/networking.nix b/nixos/modules/config/networking.nix index 9e7cfbd686cc..426aaa34885c 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 {