From e8ff90e5830b4fe9d1fc6c28fcb6dd5800d2e644 Mon Sep 17 00:00:00 2001 From: Nick Date: Mon, 27 Jan 2025 14:59:31 -0600 Subject: [PATCH] chore: had to disable rocm --- nixos/modules/ollama.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/nixos/modules/ollama.nix b/nixos/modules/ollama.nix index c8ecc7f..f2b22e7 100755 --- a/nixos/modules/ollama.nix +++ b/nixos/modules/ollama.nix @@ -14,13 +14,13 @@ in { services = { ollama = { - acceleration = "rocm"; - package = pkgs.ollama.override { - config = { - rocmSupport = true; - cudaSupport = false; - }; - }; + # acceleration = "rocm"; + # package = pkgs.ollama.override { + # config = { + # rocmSupport = true; + # cudaSupport = false; + # }; + # }; enable = true; group = service.name; host = "http://${localhost}";