summaryrefslogtreecommitdiff
path: root/hosts/herra/arion-compose.nix
diff options
context:
space:
mode:
authorNatasha Moongrave <natasha@256phi.eu>2026-06-12 13:37:13 +0200
committerNatasha Moongrave <natasha@256phi.eu>2026-06-12 13:37:13 +0200
commit15d50528cf86e93bad19f65f1e4b47af49e94d71 (patch)
treecaaa600a8f38df84dc269a3844d276393e90262c /hosts/herra/arion-compose.nix
parent72ee2b5a1e65ce804d6e1dcfd11aec06385594cc (diff)
Nuked everything
Diffstat (limited to 'hosts/herra/arion-compose.nix')
-rw-r--r--hosts/herra/arion-compose.nix50
1 files changed, 0 insertions, 50 deletions
diff --git a/hosts/herra/arion-compose.nix b/hosts/herra/arion-compose.nix
deleted file mode 100644
index daa4077..0000000
--- a/hosts/herra/arion-compose.nix
+++ /dev/null
@@ -1,50 +0,0 @@
-{pkgs, ...}: {
- project.name = "odysseus";
-
- services.odysseus.service = {
- image = "ghcr.io/pewdiepie-archdaemon/odysseus:latest";
-
- ports = [
- "7000:7000"
- ];
-
- volumes = [
- "/srv/odysseus/data:/app/data"
- ];
-
- environment = {
- AUTH_ENABLED = "true";
-
- LLM_HOST = "host.docker.internal:11434";
-
- CHROMADB_HOST = "chromadb";
-
- SEARXNG_INSTANCE = "http://searxng:8080";
- };
-
- extra_hosts = [
- "host.docker.internal:host-gateway"
- ];
-
- depends_on = [
- "chromadb"
- "searxng"
- ];
- };
-
- services.chromadb.service = {
- image = "chromadb/chroma:latest";
-
- volumes = [
- "/srv/odysseus/chroma:/chroma/chroma"
- ];
- };
-
- services.searxng.service = {
- image = "searxng/searxng:latest";
- };
-
- services.ntfy.service = {
- image = "binwiederhier/ntfy:latest";
- };
-}