Files
tnvim/modules/nixos/selfhosted/open-webui.nix
2025-02-22 15:53:55 +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";
};
};
}