From 0109b80871b8fcd3c45bbc7f0b9d89526227d911 Mon Sep 17 00:00:00 2001 From: Random936 Date: Mon, 4 May 2026 12:00:00 -0400 Subject: [PATCH] Added llama-cpp to system packages --- config/ai.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config/ai.nix b/config/ai.nix index ed501c6..27c475f 100644 --- a/config/ai.nix +++ b/config/ai.nix @@ -80,4 +80,8 @@ }; }; }; + + environment.systemPackages = with pkgs; [ + (llama-cpp.override { cudaSupport = true; }) + ]; }