mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-17 04:58:19 -04:00
38 lines
755 B
Nix
38 lines
755 B
Nix
{
|
|
services.ollama = {
|
|
user = "ollama";
|
|
host = "0.0.0.0";
|
|
enable = true;
|
|
|
|
syncModels = true;
|
|
loadModels = [
|
|
"codellama:7b"
|
|
"deepscaler:1.5b"
|
|
"deepseek-r1:14b"
|
|
"deepseek-r1:32b"
|
|
"deepseek-r1:8b"
|
|
"devstral-small-2:24b"
|
|
"dolphin-llama3:70b"
|
|
"dolphin-llama3:8b"
|
|
"functiongemma:270m"
|
|
"gemma3:12b"
|
|
"gemma3:27b"
|
|
"gpt-oss:20b"
|
|
"huihui_ai/dolphin3-abliterated:8b"
|
|
"lfm2:24b"
|
|
"llama3.1:8b"
|
|
"llama3.2:1b"
|
|
"llama3.2:3b"
|
|
"magistral:24b"
|
|
"ministral-3:14b"
|
|
"nemotron-3-nano:30b"
|
|
"qwen3-coder:30b"
|
|
"qwen3-vl:32b"
|
|
"qwen3:14b"
|
|
"qwen3.5:35b"
|
|
];
|
|
models = "/zfs/models";
|
|
openFirewall = true;
|
|
};
|
|
}
|