feat: add Ollama and Qdrant service modules to configuration

This commit is contained in:
2025-06-04 16:13:22 +02:00
parent 934471bd88
commit ecf3e03e81
3 changed files with 22 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
{ config, pkgs, lib, ... }:
{
services.ollama = {
enable = true;
host = "127.0.0.1";
port = 11434;
openFirewall = false;
loadModels = [
"mxbai-embed-large"
];
};
}