Add ollama and webui

This commit is contained in:
2026-03-20 22:38:44 +01:00
parent 33712e5b1f
commit c666c4739c
2 changed files with 11 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
{ pkgs, ... }:
{
services.ollama = {
enable = true;
package = pkgs.ollama-cuda;
};
services.open-webui.enable = true;
}