From d056351de9ed810e3435a32c68ab035841ca6e2f Mon Sep 17 00:00:00 2001 From: Dmitry Voronin Date: Wed, 23 Oct 2024 19:25:43 +0300 Subject: [PATCH] Ollama: Bring back pull delay. --- module/Ollama.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/module/Ollama.nix b/module/Ollama.nix index b6cc980..207053c 100644 --- a/module/Ollama.nix +++ b/module/Ollama.nix @@ -56,6 +56,7 @@ in ]; serviceConfig.Type = "simple"; script = '' + sleep 5 ${getExe pkgs.ollama} pull ${concatStringsSep " " cfg.models} ''; };