From a1741f077686865be6ced78c0e951fac8ec94a8a Mon Sep 17 00:00:00 2001 From: Crony Akatsuki Date: Sun, 6 Apr 2025 20:33:31 +0200 Subject: [PATCH] feat: add open-webui --- modules/linux/nixos/ollama.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/linux/nixos/ollama.nix b/modules/linux/nixos/ollama.nix index 0e8be5f..3fb822a 100644 --- a/modules/linux/nixos/ollama.nix +++ b/modules/linux/nixos/ollama.nix @@ -13,5 +13,8 @@ loadModels = ["llama3.2:3b" "deepseek-r1:1.5b"]; acceleration = "cuda"; }; + services.open-webui = { + enable = true; + }; }; }