summary refs log tree commit diff
path: root/machines/bismuth
diff options
context:
space:
mode:
authorMel <mel@rnrd.eu>2026-06-14 22:38:20 +0200
committerMel <mel@rnrd.eu>2026-06-14 22:38:20 +0200
commitb9e6714ef53fc124d784e3be240ff17410ee117b (patch)
tree1ca3f79da1e252f4b82f3a5c8645c5a85d8e2fe2 /machines/bismuth
parent57ae266d4d7bac63c0a3a27e8faa1aa81c7ec375 (diff)
downloadminerals-b9e6714ef53fc124d784e3be240ff17410ee117b.tar.zst
minerals-b9e6714ef53fc124d784e3be240ff17410ee117b.zip
Split Bismuth disk 'Two' into Windows-side and Linux-side partitions with ext4+NTFS HEAD main
Signed-off-by: Mel <mel@rnrd.eu>
Diffstat (limited to 'machines/bismuth')
-rw-r--r--machines/bismuth/devices.nix18
1 files changed, 16 insertions, 2 deletions
diff --git a/machines/bismuth/devices.nix b/machines/bismuth/devices.nix
index 64a5809..2426a11 100644
--- a/machines/bismuth/devices.nix
+++ b/machines/bismuth/devices.nix
@@ -47,7 +47,9 @@
   # disks
   boot.supportedFilesystems = [ "ntfs" ];
 
+  # see: man mount(8) for options
   fileSystems = {
+    # primary windows system disk
     "/run/media/mel/Main" = {
       device = "/dev/disk/by-label/Main";
       fsType = "ntfs-3g";
@@ -61,8 +63,9 @@
       ];
     };
 
-    "/run/media/mel/Two" = {
-      device = "/dev/disk/by-label/Two";
+    # large storage disk, windows-side partition
+    "/run/media/mel/Wo" = {
+      device = "/dev/disk/by-label/Wo";
       fsType = "ntfs-3g";
       options = [
         "defaults"
@@ -73,6 +76,17 @@
         "uid=1000"
       ];
     };
+
+    # large storage disk, linux-side partition
+    "/run/media/mel/To" = {
+      device = "/dev/disk/by-label/To";
+      fsType = "ext4";
+      options = [
+        "defaults"
+        "nodiscard" # continuous trim not recommended
+        "nofail"
+      ];
+    };
   };
 
   # printing