llama-cpp: make models and modelsDir default null

This commit is contained in:
agentelement
2026-02-01 21:03:09 -07:00
parent d05f1a02a1
commit b84fe8afc2
@@ -22,12 +22,14 @@ in
type = lib.types.nullOr lib.types.path;
example = "/models/mistral-instruct-7b/ggml-model-q4_0.gguf";
description = "Model path.";
default = null;
};
modelsDir = lib.mkOption {
type = lib.types.nullOr lib.types.path;
example = "/models/";
description = "Models directory.";
default = null;
};
extraFlags = lib.mkOption {