Gives users who want to use binary caches a way to do so without messing with module internals. Fixes https://github.com/NixOS/hydra/issues/297.
G7LZJ4VAPKYXTTSI5WXPEWF5VF3ZMNLKIEPYWZULYNIZFXTI3ZQAC };useSubstitutes = mkOption {type = types.bool;default = false;description = ''Whether to use binary caches for downloading store paths. Note thatbinary substitutions trigger (a potentially large number of) additionalHTTP requests that slow down the queue monitor thread significantly.Also, this Hydra instance will serve those downloaded store paths toits users with its own signature attached as if it had built themitself, so don't enable this feature unless your active binary cachesare absolute trustworthy.'';
{ ExecStart = "@${cfg.package}/bin/hydra-queue-runner hydra-queue-runner -v --option build-use-substitutes false";
{ ExecStart = "@${cfg.package}/bin/hydra-queue-runner hydra-queue-runner -v --option build-use-substitutes ${if optionalString cfg.useSubstitutes then "true" else "false"}";