nix/nixos/zen/llm.nix
iofq c9e64ce287
Some checks failed
/ nvim-bundle (nvim-min) (push) Failing after 57s
/ check (push) Successful in 2m30s
3/20
2026-03-20 01:23:28 -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;
}
);
};
}