Files
tawm/modules/nixos/open-webui.nix
2025-02-03 23:01:48 +05:30

12 lines
212 B
Nix

{...}: {
services.open-webui = {
enable = true;
openFirewall = true;
host = "0.0.0.0";
environment = {
ENABLE_OLLAMA_API = "True";
OLLAMA_BASE_URL = "http://pc:11434";
};
};
}