mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
8a05b4f8d4
NixOS already has good support for the Ollama backend service. Now we can benefit from having a convenient web frontend as well for it.
22 lines
482 B
Nix
22 lines
482 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
name = "nextjs-ollama-llm-ui";
|
|
meta.maintainers = with lib.maintainers; [ malteneuss ];
|
|
|
|
nodes.machine =
|
|
{ pkgs, ... }:
|
|
{
|
|
services.nextjs-ollama-llm-ui = {
|
|
enable = true;
|
|
port = 8080;
|
|
};
|
|
};
|
|
|
|
testScript = ''
|
|
# Ensure the service is started and reachable
|
|
machine.wait_for_unit("nextjs-ollama-llm-ui.service")
|
|
machine.wait_for_open_port(8080)
|
|
machine.succeed("curl --fail http://127.0.0.1:8080")
|
|
'';
|
|
}
|