nix/nixos/zen/llm.nix
iofq e06cc202a8
Some checks failed
/ check (push) Has been cancelled
3/20
2026-03-20 01:13:25 -05:00

14 lines
272 B
Nix

{ pkgs-unstable, ... }:
{
services.llama-cpp = {
enable = true;
openFirewall = true;
host = "0.0.0.0";
model = "/srv/models/Qwen3.5-4B-Q6_K.gguf";
package = (
pkgs-unstable.llama-cpp.override {
cudaSupport = true;
}
);
};
}