about summary refs log tree commit diff
path: root/nixos/modules/services/networking/skydns.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/services/networking/skydns.nix')
-rw-r--r--nixos/modules/services/networking/skydns.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/nixos/modules/services/networking/skydns.nix b/nixos/modules/services/networking/skydns.nix
index c4e959b57bbed..dea60a3862a38 100644
--- a/nixos/modules/services/networking/skydns.nix
+++ b/nixos/modules/services/networking/skydns.nix
@@ -49,6 +49,7 @@ in {
 
     nameservers = mkOption {
       default = map (n: n + ":53") config.networking.nameservers;
+      defaultText = literalExpression ''map (n: n + ":53") config.networking.nameservers'';
       type = types.listOf types.str;
       description = "Skydns list of nameservers to forward DNS requests to when not authoritative for a domain.";
       example = ["8.8.8.8:53" "8.8.4.4:53"];