From a5ce041d8c2ec0e404b862fc465f792ab7a3d929 Mon Sep 17 00:00:00 2001 From: Filippo Berto Date: Mon, 3 Nov 2025 17:44:12 +0100 Subject: [PATCH] fix(ollama web ui): fix port collision --- nixos/ollama-ui.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/nixos/ollama-ui.nix b/nixos/ollama-ui.nix index 453acc2..5a401c7 100644 --- a/nixos/ollama-ui.nix +++ b/nixos/ollama-ui.nix @@ -1,3 +1,6 @@ { - services.nextjs-ollama-llm-ui.enable = true; + services.nextjs-ollama-llm-ui = { + enable = true; + port = 3112; + }; }