mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-01-31 03:19:37 +01:00
added gaming & model testing related stuff
This commit is contained in:
parent
777d704487
commit
40aa35b0f7
|
@ -6,6 +6,7 @@
|
|||
./neovim.nix
|
||||
./flatpak.nix
|
||||
./discord.nix
|
||||
./ollama.nix
|
||||
];
|
||||
|
||||
}
|
||||
|
|
9
hosts/goober/features/software/ollama.nix
Normal file
9
hosts/goober/features/software/ollama.nix
Normal file
|
@ -0,0 +1,9 @@
|
|||
{config, pkgs, ...}:
|
||||
{
|
||||
services.ollama = {
|
||||
enable = true;
|
||||
# Optional: load models on startup
|
||||
loadModels = [ "deepseek-r1:8b" ];
|
||||
acceleration = "cuda";
|
||||
};
|
||||
}
|
|
@ -23,5 +23,8 @@
|
|||
|
||||
# native wayland support (unstable)
|
||||
wineWowPackages.waylandFull
|
||||
|
||||
# for easy games gestion
|
||||
lutris
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue