From f22276dd708f38504fcf39d4cc50e73b501d48f0 Mon Sep 17 00:00:00 2001 From: notohh Date: Tue, 12 Nov 2024 16:37:27 -0500 Subject: [PATCH] yuki: remove twitch miner yuki: remove twitch miner --- hosts/yuki/services/default.nix | 3 +-- hosts/yuki/services/twitch-miner.nix | 12 ------------ 2 files changed, 1 insertion(+), 14 deletions(-) delete mode 100644 hosts/yuki/services/twitch-miner.nix diff --git a/hosts/yuki/services/default.nix b/hosts/yuki/services/default.nix index 7b49f65..23a511e 100644 --- a/hosts/yuki/services/default.nix +++ b/hosts/yuki/services/default.nix @@ -7,11 +7,10 @@ ./stash.nix ./jellyfin.nix ./wallos.nix - ./searxng.nix + # ./searxng.nix ./anki-sync-server.nix # ./paperless.nix # ./hydroxide.nix - # ./twitch-miner.nix ./botoh.nix ]; } diff --git a/hosts/yuki/services/twitch-miner.nix b/hosts/yuki/services/twitch-miner.nix deleted file mode 100644 index a5ba37e..0000000 --- a/hosts/yuki/services/twitch-miner.nix +++ /dev/null @@ -1,12 +0,0 @@ -_: { - virtualisation.oci-containers.containers.twitch-miner = { - image = "rdavidoff/twitch-channel-points-miner-v2@sha256:a344037ff4180fccc909ca398cc180a840ffd89f6af121789a58764a86769e58"; - volumes = [ - "/home/notoh/twitch-miner/analytics:/usr/src/app/analytics" - "/home/notoh/twitch-miner/cookies:/usr/src/app/cookie" - "/home/notoh/twitch-miner/logs:/usr/src/app/logs" - "/home/notoh/twitch-miner/run.py:/usr/src/app/run.py:ro" - ]; - ports = ["5000:5000"]; - }; -}