From a893514708544d43b67d22758cef39ec18a24326 Mon Sep 17 00:00:00 2001 From: "K. Isom" Date: Sat, 19 Sep 2026 21:51:50 -0700 Subject: [PATCH] llama-server: revert models-max 3 -> 2 (OOM-killed desktop on rebuild) models-max 3 pulled all three residents into RAM and the OOM killer took the desktop (and Hermes) mid-switch. models-max 2 is the safe baseline; co-residency of all three is a future-optimization, not a today one. --- hw/straylight/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/straylight/default.nix b/hw/straylight/default.nix index aef7cb7..dc7ad21 100644 --- a/hw/straylight/default.nix +++ b/hw/straylight/default.nix @@ -227,7 +227,7 @@ in --host 0.0.0.0 \ --port 11434 \ --models-preset ${llamaModelsIni} \ - --models-max 3 \ + --models-max 2 \ --timeout 7200 ''; User = "llama-server";