summary refs log tree commit diff
path: root/machines/corsac
diff options
context:
space:
mode:
Diffstat (limited to 'machines/corsac')
-rw-r--r--machines/corsac/devices.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/machines/corsac/devices.nix b/machines/corsac/devices.nix
index d7be7f5..0f12724 100644
--- a/machines/corsac/devices.nix
+++ b/machines/corsac/devices.nix
@@ -24,15 +24,15 @@
     DHCP = "yes";
   };
 
-  # extra filesystems
-  boot.supportedFilesystems = [ "ntfs" ];
-
   fileSystems = {
     # todo: migrate jellyfin drive
+    # note: yes, the drive is called okta, but
+    # is mounted as 'Duo', because that was
+    # the old name of the previous drive. see todo.
     "/run/media/mel/Duo" = {
-      device = "/dev/disk/by-label/Duo";
-      fsType = "ntfs-3g";
-      options = [ "rw" "uid=1000" ];
+      device = "/dev/disk/by-label/Okta";
+      fsType = "ext4";
+      options = [ "defaults" "discard" ];
     };
   };
 }