services.qdrant.settings
NixOS option
Configuration for Qdrant Refer to https://github.com/qdrant/qdrant/blob/master/config/config.yaml for details on supported values.
type: YAML 1.1 valueDefault
{
storage = {
storage_path = "/var/lib/qdrant/storage";
snapshots_path = "/var/lib/qdrant/snapshots";
};
hsnw_index = {
on_disk = true;
};
service = {
host = "127.0.0.1";
http_port = 6333;
grpc_port = 6334;
};
telemetry_disabled = true;
}
Example
declared in: nixos/modules/services/search/qdrant.nixView source on NixOS/nixpkgs →{
hsnw_index = {
on_disk = true;
};
service = {
grpc_port = 6334;
host = "127.0.0.1";
http_port = 6333;
};
storage = {
snapshots_path = "/var/lib/qdrant/snapshots";
storage_path = "/var/lib/qdrant/storage";
};
telemetry_disabled = true;
}