mirror of
https://codeberg.org/privacy1st/nix-git
synced 2025-02-12 09:01:00 +01:00
18 lines
521 B
Nix
18 lines
521 B
Nix
{ pkgs, ...}:
|
|
{
|
|
# ollama server for local large language models.
|
|
services.ollama = {
|
|
enable = true;
|
|
loadModels = [
|
|
# https://ollama.com/library/deepseek-r1
|
|
"deepseek-r1:32b"
|
|
];
|
|
};
|
|
|
|
# User-friendly AI Interface (Supports Ollama, OpenAI API, ...).
|
|
#
|
|
# https://docs.openwebui.com/getting-started/quick-start
|
|
# Admin Creation: The first account created on Open WebUI gains Administrator privileges, controlling user management and system settings.
|
|
services.open-webui.enable = true;
|
|
}
|