From efe96374de13a3e99c8d8ee0359d2498501eef8a Mon Sep 17 00:00:00 2001 From: "Lennart J. Kurzweg (Nx2)" Date: Wed, 27 Aug 2025 21:05:26 +0200 Subject: [PATCH] ollama accessable from everywhere --- system-modules/ollama.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system-modules/ollama.nix b/system-modules/ollama.nix index 9fe38d3..446446a 100644 --- a/system-modules/ollama.nix +++ b/system-modules/ollama.nix @@ -4,7 +4,7 @@ package = if hyper.nvidia.enable then pkgs.ollama-cuda else pkgs.ollama; enable = true; acceleration = lib.mkIf hyper.nvidia.enable "cuda"; - host = if hyper.host == "NxACE" then "0.0.0.0" else "127.0.0.1"; + host = "0.0.0.0"; port = 11434; environmentVariables = { OLLAMA_ORIGINS = "*";