aboutsummaryrefslogtreecommitdiff
path: root/nixos/opt
diff options
context:
space:
mode:
authorAargh Rai <aargh.rai+git@gmail.com>2026-06-09 19:02:58 +0530
committerAargh Rai <aargh.rai+git@gmail.com>2026-06-09 19:02:58 +0530
commite8e5ed4f7e684ee38a5f20162053e68f2911ff1e (patch)
tree6cc773b411cc1086b0da82ba4e9fbcf5599438c1 /nixos/opt
parentc6084fef665e3931623fa5a181f0d51827c0e387 (diff)
updated to 26.05
Diffstat (limited to 'nixos/opt')
-rw-r--r--nixos/opt/llm.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/nixos/opt/llm.nix b/nixos/opt/llm.nix
index f9dad3a..db5c81a 100644
--- a/nixos/opt/llm.nix
+++ b/nixos/opt/llm.nix
@@ -1,9 +1,8 @@
{ config, pkgs, unstable, ... }:
{
- services.ollama.package = unstable.ollama;
services.ollama = {
enable = true;
- acceleration = "cuda";
+ package = unstable.ollama-cuda;
};
}