about summary refs log tree commit diff
path: root/nixos/modules/services/misc
diff options
context:
space:
mode:
authorAlex Martens <alex@thinglab.org>2024-03-26 19:32:13 -0700
committerAlex Martens <alex@thinglab.org>2024-03-26 19:32:13 -0700
commit1dacec9bb9a7eb7907c4d0d959ef869d6aa92b5c (patch)
treee6c5939bafef8d1f82a35be9b3035e610d59dc7c /nixos/modules/services/misc
parent647a569075b8618c5bc53a2a434072e08613b3a4 (diff)
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 = [];
       };