From 5f7a7b3cb46c6577fce3fe35347c28ae124b7199 Mon Sep 17 00:00:00 2001 From: stitchy Date: Sat, 11 Oct 2025 01:53:20 -0700 Subject: [PATCH 1/3] chore(tanzanite): syncv3 doesn't work with dendrite anymore --- hosts/tanzanite/default.nix | 8 -------- 1 file changed, 8 deletions(-) diff --git a/hosts/tanzanite/default.nix b/hosts/tanzanite/default.nix index b89fd80..d63fa4c 100644 --- a/hosts/tanzanite/default.nix +++ b/hosts/tanzanite/default.nix @@ -77,14 +77,6 @@ in { proxyWebsockets = true; recommendedProxySettings = true; }; - }; - "syncv3.stitchy.moe" = { - enableACME = true; - forceSSL = true; - locations."/" = { - proxyPass = "http://127.0.0.1:8009"; - }; - }; "grafana.stitchy.moe" = { enableACME = true; forceSSL = true; From 5ba8df8383c8fd6a845c979ed9f4456b7a0c0f83 Mon Sep 17 00:00:00 2001 From: stitchy Date: Sat, 11 Oct 2025 01:53:49 -0700 Subject: [PATCH 2/3] chore(tanzanite): isos --- hosts/tanzanite/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hosts/tanzanite/default.nix b/hosts/tanzanite/default.nix index d63fa4c..b974796 100644 --- a/hosts/tanzanite/default.nix +++ b/hosts/tanzanite/default.nix @@ -50,6 +50,9 @@ in { location ^~/files/ { alias /opt/www/files/; } + location ^~/linux_isos/ { + alias /opt/docker-containers/torrenting/data/torrents/; + } ''; }; "gay.stitchy.moe" = { From 438340cc37348011982db461367e8033d12babd3 Mon Sep 17 00:00:00 2001 From: stitchy Date: Sat, 11 Oct 2025 01:54:15 -0700 Subject: [PATCH 3/3] feat(tanzanite): services hosted on redundant hdds --- hosts/tanzanite/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hosts/tanzanite/default.nix b/hosts/tanzanite/default.nix index b974796..bd5176e 100644 --- a/hosts/tanzanite/default.nix +++ b/hosts/tanzanite/default.nix @@ -183,6 +183,12 @@ in { options = [ "subvol=@docker-containers" "compress=zstd" ]; }; + fileSystems."/opt/services" = { + device = "/dev/disk/by-uuid/0acaee69-07df-45f3-a2f4-65e2f3fda529"; + fsType = "btrfs"; + options = [ "subvol=@services" "compress=zstd" ]; + }; + fileSystems."/opt/www" = { device = "/dev/disk/by-uuid/0acaee69-07df-45f3-a2f4-65e2f3fda529"; fsType = "btrfs";