From c212d0c671ffc81fd9407ea200f3a4636e08c9c5 Mon Sep 17 00:00:00 2001 From: Raphael Date: Thu, 3 Jul 2025 23:34:26 +0200 Subject: [PATCH] feat(self/ollama): GPU doesn't work with ia --- hosts/server/configuration.nix | 2 +- services/self_host/ollama.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/server/configuration.nix b/hosts/server/configuration.nix index b41daf3..288842e 100644 --- a/hosts/server/configuration.nix +++ b/hosts/server/configuration.nix @@ -22,7 +22,7 @@ service = { selfhost = { htop = true; - ollama = true; + ollama = false; monitor = true; nextcloud = true; }; diff --git a/services/self_host/ollama.nix b/services/self_host/ollama.nix index f3f9f4d..2331670 100644 --- a/services/self_host/ollama.nix +++ b/services/self_host/ollama.nix @@ -8,7 +8,7 @@ in ollama = { enable = true; loadModels = [ - "mistral:7b" + "qwen2.5:3b" ]; acceleration = "cuda"; };