Merge pull request #299376 from newAM/nixos-llama-cpp-fix

nixos/llama-cpp: fix example flags
This commit is contained in:
Weijia Wang 2024-04-02 00:03:31 +02:00 committed by GitHub
commit 12375393fb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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 = [];
};