From 438340cc37348011982db461367e8033d12babd3 Mon Sep 17 00:00:00 2001 From: stitchy Date: Sat, 11 Oct 2025 01:54:15 -0700 Subject: [PATCH] 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";