buildbot-master module: fix overly restrictive option type for masterCfg

This commit is contained in:
Dan Peebles 2017-03-03 01:33:18 +00:00
parent 33e23934a7
commit 3f116702cc

View File

@ -66,7 +66,7 @@ in {
};
masterCfg = mkOption {
type = types.str;
type = types.nullOr types.str;
description = ''
Optionally pass raw master.cfg file as string.
Other options in this configuration will be ignored.