mirror of
https://github.com/Alexandre1a/NixOSDots.git
synced 2026-03-10 08:19:47 +01:00
16 lines
254 B
Nix
16 lines
254 B
Nix
{ gpu ... }:
|
|
|
|
{
|
|
services = {
|
|
ollama = {
|
|
enable = true;
|
|
loadModels = [ "codegemma:7b-instruct" "codegemma:7b-code" "codegemma:2b" "starcoder2:7b" ];
|
|
acceleration = gpu;
|
|
};
|
|
open-webui = {
|
|
enable = true;
|
|
};
|
|
};
|
|
|
|
}
|