From 4fca1235521bc0ce876948d5e8c5d591e9b48999 Mon Sep 17 00:00:00 2001 From: Crony Akatsuki Date: Mon, 6 Oct 2025 18:37:27 +0200 Subject: [PATCH] feat(ollama): setup deepseek models. --- modules/linux/nixos/ollama.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/linux/nixos/ollama.nix b/modules/linux/nixos/ollama.nix index 069b21b..a47b7d0 100644 --- a/modules/linux/nixos/ollama.nix +++ b/modules/linux/nixos/ollama.nix @@ -10,7 +10,7 @@ config = lib.mkIf config.crony.ollama.enable { services.ollama = { enable = true; - loadModels = ["deepseek-r1:8b"]; + loadModels = ["deepseek-r1:14b" "deepseek-coder-v2:16b-lite-instruct-q4_K_M"]; acceleration = "cuda"; }; services.open-webui = {