From 886a34f7a56433d635a5aa647707f63ae017585e Mon Sep 17 00:00:00 2001 From: s-prechtl Date: Sun, 9 Nov 2025 16:29:52 +0100 Subject: [PATCH] fix: ollama --- hosts/hitsugibune/llm.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/hosts/hitsugibune/llm.nix b/hosts/hitsugibune/llm.nix index d199620..b0e3d70 100644 --- a/hosts/hitsugibune/llm.nix +++ b/hosts/hitsugibune/llm.nix @@ -2,19 +2,18 @@ services.open-webui = { enable = true; openFirewall = true; - host = "0.0.0.0"; + host = "chattn.sprechtl.me"; }; services.ollama = { enable = true; - host = "chattn.sprechtl.me"; acceleration = "cuda"; loadModels = ["llama3.2:3b" "deepseek-r1:1.5b" "gpt-oss:20b"]; }; services.nginx = { enable = true; - virtualHosts.${config.services.ollama.host} = { + virtualHosts.${config.services.open-webui.host} = { forceSSL = true; enableACME = true; locations."/" = {