Unverified Commit 12375393 authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

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

nixos/llama-cpp: fix example flags
parents a4fa0442 1dacec9b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 = [];
      };