added gaming & model testing related stuff

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

View file

@ -6,6 +6,7 @@
./neovim.nix ./neovim.nix
./flatpak.nix ./flatpak.nix
./discord.nix ./discord.nix
./ollama.nix
]; ];
} }

View file

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

View file

@ -23,5 +23,8 @@
# native wayland support (unstable) # native wayland support (unstable)
wineWowPackages.waylandFull wineWowPackages.waylandFull
# for easy games gestion
lutris
]; ];
} }