From 51d21b9b917e76da5c143f183319d83a2f82b775 Mon Sep 17 00:00:00 2001 From: Alexander Ried Date: Mon, 9 May 2016 19:09:33 +0200 Subject: [PATCH] hydra-module.nix: fix warning about deprecated types.list --- hydra-module.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hydra-module.nix b/hydra-module.nix index a75086cd..494d19c6 100644 --- a/hydra-module.nix +++ b/hydra-module.nix @@ -164,7 +164,7 @@ in }; buildMachinesFiles = mkOption { - type = types.list types.path; + type = types.listOf types.path; default = []; example = [ "/etc/nix/machines" "/var/lib/hydra/provisioner/machines" ]; description = "List of files containing build machines.";