From 811483be837bc255247ebee41403bcbae7f1ac4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torjus=20H=C3=A5kestad?= Date: Sun, 1 Sep 2024 19:34:32 +0200 Subject: [PATCH] Add ollama webui --- hosts/gunter/ollama.nix | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/hosts/gunter/ollama.nix b/hosts/gunter/ollama.nix index 25e6ecd..d6a752e 100644 --- a/hosts/gunter/ollama.nix +++ b/hosts/gunter/ollama.nix @@ -4,14 +4,14 @@ enable = true; acceleration = "cuda"; }; - # services.open-webui = { - # enable = true; - # environment = { - # DO_NOT_TRACK = "True"; - # SCARF_NO_ANALYTICS = "True"; - # OLLAMA_API_BASE_URL = "http://127.0.0.1:11434"; - # WEBUI_AUTH = "False"; - # }; - # port = 11444; - # }; + services.open-webui = { + enable = true; + environment = { + DO_NOT_TRACK = "True"; + SCARF_NO_ANALYTICS = "True"; + OLLAMA_API_BASE_URL = "http://127.0.0.1:11434"; + WEBUI_AUTH = "False"; + }; + port = 11444; + }; }