services-flake/nix/default.nix

26 lines
432 B
Nix
Raw Normal View History

2023-07-17 23:45:33 +03:00
{ pkgs, lib, ... }:
let
inherit (import ./lib.nix) multiService;
in
{
2023-07-17 23:45:33 +03:00
imports = builtins.map multiService [
2023-08-29 14:34:04 +03:00
./apache-kafka.nix
./clickhouse
./elasticsearch.nix
./mysql
./nginx
./ollama.nix
./postgres
./open-webui.nix
2023-08-02 07:28:19 +03:00
./redis-cluster.nix
./redis.nix
2023-08-29 14:34:04 +03:00
./zookeeper.nix
2024-02-22 19:55:51 +03:00
./grafana.nix
./prometheus.nix
2024-02-29 15:40:22 +03:00
./pgadmin.nix
./cassandra.nix
2024-05-19 14:36:45 +03:00
./tempo.nix
./weaviate.nix
];
}