remove ollama stuff

This commit is contained in:
Simon Gardling 2024-11-16 01:52:30 -05:00
parent 0e856624b4
commit 8dc2ee3d54
Signed by: titaniumtown
GPG Key ID: 9AB28AC10ECE533D

View File

@ -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";
};
}