From d403ed2cf5cb9cf6005af72fbac0e2fd6b4a0de3 Mon Sep 17 00:00:00 2001 From: Mohamed Chrayed Date: Sun, 19 Apr 2026 18:17:08 +0200 Subject: [PATCH] string instead of list --- modules/apps/sys/ai.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/apps/sys/ai.nix b/modules/apps/sys/ai.nix index 844a310..e7ff19c 100644 --- a/modules/apps/sys/ai.nix +++ b/modules/apps/sys/ai.nix @@ -9,7 +9,7 @@ services.ollama = { enable = true; package = pkgs.ollama-rocm; - host = [ "0.0.0.0" ]; + host = "0.0.0.0"; loadModels = [ "qwen3.6:35b" "gpt-oss:20b" "gemma4:26b" "gemma4:e4b" ]; }; };