Testing ollama fix

This commit is contained in:
ediblerope 2026-05-12 15:17:01 +01:00
parent 09352b26eb
commit d23db30b7e

View file

@ -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
});
})
];
};
}