Hello,
I want to try and use ollama to run some models with the webui.
I am running 24.05 and open-webui
is not packaged there.
I do not wish to move my whole system to unstable just for one package.
I could do it using podman but I’d prefer to do it without containers – that’s why I use nixos.
On this forum there are tutorials on how to install unstable packages, but not how to enable unstable services.
Is it possible?
If so, can someone help me?
Here’s my current (not working) conifg:
{ config, ... }:
{
services = {
ollama = { enable = true;
};
open-webui = { enable = true;
};
};
}