nixos/tinydns: default data to empty string

(not strictly required to start the service)
This commit is contained in:
Joerg Thalheim 2017-09-24 15:38:25 +01:00
parent 1b7e5eaa79
commit 735b41c34f

View File

@ -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)";
};