mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-02-08 05:38:55 -05:00
19 lines
280 B
Nix
19 lines
280 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
services.ollama = {
|
|
enable = true;
|
|
loadModels = [];
|
|
acceleration = "rocm";
|
|
};
|
|
|
|
networking.firewall.allowedTCPPorts = [3000];
|
|
|
|
services.nextjs-ollama-llm-ui = {
|
|
enable = true;
|
|
port = 3000;
|
|
hostname = "0.0.0.0";
|
|
};
|
|
}
|