Add ollama and split tardis/default.nix

This commit is contained in:
2026-07-08 22:41:57 +01:00
parent 13f8a22760
commit 86e9663531
6 changed files with 96 additions and 69 deletions
+9
View File
@@ -0,0 +1,9 @@
{ pkgs, ... }:
{
services.ollama = {
enable = true;
package = pkgs.ollama-cuda;
loadModels = [ "deepseek-coder-v2:16b" "qwen3.5:9b" ];
};
}