From 54a9762dfb995238e0048ef8376ac2c02634b506 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Thu, 16 Apr 2020 10:37:27 +0200 Subject: [PATCH] fix(flix): only index sorted files --- configs/flix.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/flix.nix b/configs/flix.nix index e241547..ce4efd6 100644 --- a/configs/flix.nix +++ b/configs/flix.nix @@ -22,7 +22,7 @@ in { script = '' flix_cache="${cacheLocation}/flix_index" - find ${flixLocation} -type f > "$flix_cache" + find ${flixLocation}/download/sorted -type f > "$flix_cache" ''; startAt = "hourly"; serviceConfig.Type = "oneshot";