mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-01-31 11:29:33 +01:00
added gaming & model testing related stuff
This commit is contained in:
parent
777d704487
commit
40aa35b0f7
|
@ -6,6 +6,7 @@
|
||||||
./neovim.nix
|
./neovim.nix
|
||||||
./flatpak.nix
|
./flatpak.nix
|
||||||
./discord.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)
|
# native wayland support (unstable)
|
||||||
wineWowPackages.waylandFull
|
wineWowPackages.waylandFull
|
||||||
|
|
||||||
|
# for easy games gestion
|
||||||
|
lutris
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue