mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-05 21:03:40 +00:00
19 lines
280 B
Nix
19 lines
280 B
Nix
{
|
|
name = "chromadb";
|
|
meta.maintainers = [ ];
|
|
|
|
nodes = {
|
|
machine = {
|
|
services.chromadb = {
|
|
enable = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
testScript = ''
|
|
machine.start()
|
|
machine.wait_for_unit("chromadb.service")
|
|
machine.wait_for_open_port(8000)
|
|
'';
|
|
}
|