Commit 016e83bfcc23

Vincent Demeester <vincent@sbr.pm>
2026-04-01 10:11:34
feat(rhea): add /zion mount for replicated media
Added /dev/sda1 (3.6T ext4) as /zion for audiobooks, music, ebooks, and documents replicated from other hosts.
1 parent 281dd45
Changed files (1)
systems
systems/rhea/hardware.nix
@@ -8,6 +8,10 @@
     device = "/dev/disk/by-uuid/7ff6e217-ec49-40af-96a1-ad28a24bb687";
     fsType = "ext4";
   };
+  fileSystems."/zion" = {
+    device = "/dev/disk/by-uuid/f5076355-3c58-4fad-9da9-aea51e8bff23";
+    fsType = "ext4";
+  };
 
   networking.hostId = builtins.substring 0 8 (builtins.hashString "md5" config.networking.hostName);