From 735b41c34f78dc7781cd85d0be6636239af78c4f Mon Sep 17 00:00:00 2001 From: Joerg Thalheim Date: Sun, 24 Sep 2017 15:38:25 +0100 Subject: [PATCH] nixos/tinydns: default data to empty string (not strictly required to start the service) --- nixos/modules/services/networking/tinydns.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/services/networking/tinydns.nix b/nixos/modules/services/networking/tinydns.nix index a60a820a09e5..184888ef05da 100644 --- a/nixos/modules/services/networking/tinydns.nix +++ b/nixos/modules/services/networking/tinydns.nix @@ -15,6 +15,7 @@ with lib; data = mkOption { type = types.lines; + default = ""; description = "The DNS data to serve, in the format described by tinydns-data(8)"; };