mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-14 22:04:27 +01:00
26 lines
385 B
Nix
26 lines
385 B
Nix
{ lib, pkgs, ... }:
|
|
|
|
let
|
|
lib = pkgs.lib;
|
|
|
|
in
|
|
{
|
|
name = "chromadb";
|
|
meta.maintainers = [ lib.maintainers.drupol ];
|
|
|
|
nodes = {
|
|
machine =
|
|
{ pkgs, ... }:
|
|
{
|
|
services.chromadb = {
|
|
enable = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
testScript = ''
|
|
machine.start()
|
|
machine.wait_for_unit("chromadb.service")
|
|
machine.wait_for_open_port(8000)
|
|
'';
|
|
}
|