From 8dc2ee3d540e51b0ef41a09dbf7bd8eaa1b696f9 Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Sat, 16 Nov 2024 01:52:30 -0500 Subject: [PATCH] remove ollama stuff --- services/llm.nix | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 services/llm.nix diff --git a/services/llm.nix b/services/llm.nix deleted file mode 100644 index ca65410..0000000 --- a/services/llm.nix +++ /dev/null @@ -1,19 +0,0 @@ -{ - pkgs, - config, - service_configs, - ... -}: -{ - services.ollama = { - enable = true; - home = service_configs.ollama.data_dir + "/home"; - models = config.services.ollama.home + "/models"; - environmentVariables = { - OLLAMA_LLM_LIBRARY = "cpu_avx2"; - }; - host = "0.0.0.0"; - port = service_configs.ports.ollama; - user = "ollama"; - }; -}