added gaming & model testing related stuff

This commit is contained in:
chloe 2025-01-31 01:31:05 +01:00
parent 777d704487
commit 40aa35b0f7
3 changed files with 13 additions and 0 deletions

View file

@ -0,0 +1,9 @@
{config, pkgs, ...}:
{
services.ollama = {
enable = true;
# Optional: load models on startup
loadModels = [ "deepseek-r1:8b" ];
acceleration = "cuda";
};
}