From 81fee456c24020b46950435df336ff8edb6b69f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Mon, 10 Apr 2017 14:59:58 +0200 Subject: [PATCH] fix #425: parsable config by hydra-queue-runner --- hydra-module.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hydra-module.nix b/hydra-module.nix index 2aa8f28f..21e19f78 100644 --- a/hydra-module.nix +++ b/hydra-module.nix @@ -230,7 +230,7 @@ in hydra_logo ${cfg.logo} ''} gc_roots_dir ${cfg.gcRootsDir} - use-substitutes ${if cfg.useSubstitutes then "1" else "0"} + use-substitutes = ${if cfg.useSubstitutes then "1" else "0"} ''; environment.systemPackages = [ cfg.package ];