nix-flake/modules/system/homelab/ai.nix
2026-03-03 20:42:27 +07:00

21 lines
No EOL
420 B
Nix

{ ... }: {
services = {
ollama = {
enable = true;
host = "127.0.0.1";
port = 11434;
user = "ollama";
home = "/mnt/data/ollama";
# loadModels = [ "gemma3n:e4b" "gemma3n:e2b" ];
};
open-webui = {
enable = true;
port = 8080;
environment = {
OLLAMA_BASE_URL = "http://localhost:11434";
WEBUI_AUTH = "False";
};
};
};
}