Adding extraConfig to unbound

svn path=/nixos/trunk/; revision=30211
This commit is contained in:
Lluís Batlle i Rossell 2011-11-03 18:49:54 +00:00
parent a4d2682238
commit efc64042e0

View File

@ -35,6 +35,7 @@ let
${interfaces} ${interfaces}
${access} ${access}
${forward} ${forward}
${cfg.extraConfig}
''; '';
in in
@ -75,6 +76,13 @@ in
"; ";
}; };
extraConfig = mkOption {
default = "";
description = "
Extra unbound config
";
};
}; };
}; };