feat: add Ollama and Qdrant service modules to configuration
This commit is contained in:
13
hosts/nb/modules/ollama.nix
Normal file
13
hosts/nb/modules/ollama.nix
Normal 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"
|
||||
];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user