about summary refs log tree commit diff
path: root/nixos/modules/services/misc
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2024-04-02 00:03:31 +0200
committerGitHub <noreply@github.com>2024-04-02 00:03:31 +0200
commit12375393fb9bc6d6834f7bdb82612cdc549af2a4 (patch)
tree5e34f48dead81e2b6273b342aca48ab874306127 /nixos/modules/services/misc
parenta4fa04425e3ba256ea71a2e7ffdfcd90b3449c9b (diff)
parent1dacec9bb9a7eb7907c4d0d959ef869d6aa92b5c (diff)
Merge pull request #299376 from newAM/nixos-llama-cpp-fix
nixos/llama-cpp: fix example flags
Diffstat (limited to 'nixos/modules/services/misc')
-rw-r--r--nixos/modules/services/misc/llama-cpp.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/misc/llama-cpp.nix b/nixos/modules/services/misc/llama-cpp.nix
index 305d4538e89a0..c73cff027e224 100644
--- a/nixos/modules/services/misc/llama-cpp.nix
+++ b/nixos/modules/services/misc/llama-cpp.nix
@@ -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 = [];
       };