services-flake/nix/default.nix
shivaraj-bh e7eb9dec41 feat(open-webui): init
ported from:
https://github.com/shivaraj-bh/ollama-flake/blob/main/services/open-webui.nix

This was also recently upstreamed to
[nixpkgs](https://github.com/NixOS/nixpkgs/tree/master):
https://github.com/NixOS/nixpkgs/pull/316248

---------

Co-authored-by: Pol Dellaiera <pol.dellaiera@protonmail.com>
Co-authored-by: Sridhar Ratnakumar <3998+srid@users.noreply.github.com>
2024-06-14 03:11:07 +05:30

26 lines
432 B
Nix

{ pkgs, lib, ... }:
let
inherit (import ./lib.nix) multiService;
in
{
imports = builtins.map multiService [
./apache-kafka.nix
./clickhouse
./elasticsearch.nix
./mysql
./nginx
./ollama.nix
./postgres
./open-webui.nix
./redis-cluster.nix
./redis.nix
./zookeeper.nix
./grafana.nix
./prometheus.nix
./pgadmin.nix
./cassandra.nix
./tempo.nix
./weaviate.nix
];
}