From 3f116702cc1242e34d008a8f1793e6f542e79472 Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Fri, 3 Mar 2017 01:33:18 +0000 Subject: [PATCH] buildbot-master module: fix overly restrictive option type for masterCfg --- .../modules/services/continuous-integration/buildbot/master.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/continuous-integration/buildbot/master.nix b/nixos/modules/services/continuous-integration/buildbot/master.nix index 512e09eb8041..f638cf4bae3b 100644 --- a/nixos/modules/services/continuous-integration/buildbot/master.nix +++ b/nixos/modules/services/continuous-integration/buildbot/master.nix @@ -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.