nix/nixos/zen/llm.nix
iofq 235f903c1d
All checks were successful
/ check (push) Successful in 3m10s
/ nvim-bundle (nvim) (push) Successful in 17m44s
3/20
2026-03-20 00:32:23 -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;
}
);
};
}