mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-17 04:58:19 -04:00
adding llms to bob
This commit is contained in:
24
systems/bob/llms.nix
Normal file
24
systems/bob/llms.nix
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
services = {
|
||||
ollama = {
|
||||
enable = true;
|
||||
loadModels = [
|
||||
"codellama:7b"
|
||||
"deepseek-r1:1.5b"
|
||||
"deepseek-r1:7b"
|
||||
"deepseek-r1:8b"
|
||||
"deepseek-r1:14b"
|
||||
"deepseek-r1:32b"
|
||||
"llama3.2:3b"
|
||||
"mistral-nemo:12b"
|
||||
];
|
||||
acceleration = "cuda";
|
||||
openFirewall = true;
|
||||
};
|
||||
open-webui = {
|
||||
enable = true;
|
||||
openFirewall = true;
|
||||
host = "192.168.90.25";
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user