2024-10-17 15:45:29 -04:00

20 lines
365 B
Nix

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