From d23db30b7ecf8df76ba0f9a694c2dc576f43d2a9 Mon Sep 17 00:00:00 2001 From: ediblerope Date: Tue, 12 May 2026 15:17:01 +0100 Subject: [PATCH] Testing ollama fix --- services/ollama.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/services/ollama.nix b/services/ollama.nix index 954bc49..8f72880 100644 --- a/services/ollama.nix +++ b/services/ollama.nix @@ -8,5 +8,13 @@ services.open-webui.enable = true; services.open-webui.port = 8888; + #testing + nixpkgs.overlays = [ + (final: prev: { + valkey = prev.valkey.overrideAttrs (oldAttrs: { + doCheck = false; # Disables the failing dual channel sync test + }); + }) + ]; }; } \ No newline at end of file