summary refs log tree commit diff
path: root/machines
diff options
context:
space:
mode:
authorMel <mel@rnrd.eu>2025-02-27 22:23:23 +0100
committerMel <mel@rnrd.eu>2025-02-27 22:23:23 +0100
commit05bca0df994c7b681200e16e138c7fa82d64e072 (patch)
treec49450e7b10ecd750cc75fb9c53053c197b9dd9c /machines
parent877be9fad115869138b4490dbb56123031e54899 (diff)
downloadminerals-05bca0df994c7b681200e16e138c7fa82d64e072.tar.zst
minerals-05bca0df994c7b681200e16e138c7fa82d64e072.zip
Remove `Half` disk filesystem entry from bismuth
Signed-off-by: Mel <mel@rnrd.eu>
Diffstat (limited to 'machines')
-rw-r--r--machines/bismuth/devices.nix16
1 files changed, 9 insertions, 7 deletions
diff --git a/machines/bismuth/devices.nix b/machines/bismuth/devices.nix
index cf17a89..b5a6e16 100644
--- a/machines/bismuth/devices.nix
+++ b/machines/bismuth/devices.nix
@@ -42,19 +42,21 @@
     jack.enable = true;
   };
 
-  # extra filesystems
+  # disks
   boot.supportedFilesystems = [ "ntfs" ];
 
   fileSystems = {
-    "/run/media/mel/Half" = {
-      device = "/dev/disk/by-label/Half";
-      fsType = "ntfs-3g";
-      options = [ "rw" "uid=1000" ];
-    };
     "/run/media/mel/Main" = {
       device = "/dev/disk/by-label/Main";
       fsType = "ntfs-3g";
-      options = [ "rw" "uid=1000" ];
+      options = [
+        "defaults"
+        "users"
+        "nofail"
+        "exec"
+        "rw"
+        "uid=1000"
+      ];
     };
   };