From dedcb76bedbb0c2fb43e18a5b7e58f3fcf2db0d6 Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Sun, 21 Aug 2016 02:50:12 +0900 Subject: [PATCH] module: add default to buildMachinesFiles (#372) --- hydra-module.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hydra-module.nix b/hydra-module.nix index 95574798..3639d490 100644 --- a/hydra-module.nix +++ b/hydra-module.nix @@ -165,7 +165,7 @@ in buildMachinesFiles = mkOption { type = types.listOf types.path; - default = []; + default = [ "/etc/nix/machines" ]; example = [ "/etc/nix/machines" "/var/lib/hydra/provisioner/machines" ]; description = "List of files containing build machines."; };