nixos/llama-cpp: fix example flags

This commit is contained in:
Alex Martens 2024-03-26 19:32:13 -07:00
parent 647a569075
commit 1dacec9bb9
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ in {
extraFlags = lib.mkOption {
type = lib.types.listOf lib.types.str;
description = "Extra flags passed to llama-cpp-server.";
example = ["-c" "4096" "-ngl" "32" "--numa"];
example = ["-c" "4096" "-ngl" "32" "--numa" "numactl"];
default = [];
};