parent
817aa75f84
commit
e06cc202a8
25 changed files with 529 additions and 275 deletions
14
nixos/zen/llm.nix
Normal file
14
nixos/zen/llm.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{ 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;
|
||||
}
|
||||
);
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue