From e732fcdcaee067984e5ad82456d463ee615a6941 Mon Sep 17 00:00:00 2001 From: Satria Date: Fri, 6 Mar 2026 22:34:38 +0700 Subject: [PATCH] reenable auth --- modules/system/homelab/ai.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/modules/system/homelab/ai.nix b/modules/system/homelab/ai.nix index 14d5632..ba83a32 100644 --- a/modules/system/homelab/ai.nix +++ b/modules/system/homelab/ai.nix @@ -6,15 +6,17 @@ port = 11434; user = "ollama"; home = "/mnt/data/ollama"; - # loadModels = [ "gemma3n:e4b" "gemma3n:e2b" ]; + loadModels = [ + "gemma3n:e4b" # "gemma3n:e2b" + # "codellama:7b" "starcoder:3b" + ]; }; open-webui = { enable = true; port = 8080; environment = { OLLAMA_BASE_URL = "http://localhost:11434"; - WEBUI_AUTH = "False"; - + # WEBUI_AUTH = "False"; }; }; };