add ollama

This commit is contained in:
2025-10-04 17:37:53 +02:00
parent c860a23726
commit 9c5244a272
2 changed files with 18 additions and 9 deletions

View File

@@ -0,0 +1,9 @@
{ config, pkgs, ... }:
{
# Activer Ollama comme service
services.ollama = {
enable = true;
acceleration = "cuda";
};
}