nix/nixos/zen/llm.nix
iofq 9d8bfef042
Some checks failed
/ check (push) Failing after 40s
/ nvim-bundle (nvim-min) (push) Failing after 38s
3/20
2026-03-20 01:27:50 -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;
}
);
};
}