summary refs log tree commit diff
path: root/machines/corsac/devices.nix
diff options
context:
space:
mode:
Diffstat (limited to 'machines/corsac/devices.nix')
-rw-r--r--machines/corsac/devices.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/machines/corsac/devices.nix b/machines/corsac/devices.nix
index 224029b..396151a 100644
--- a/machines/corsac/devices.nix
+++ b/machines/corsac/devices.nix
@@ -22,4 +22,16 @@
     name = "enp1s0";
     DHCP = "yes";
   };
+
+  # extra filesystems
+  boot.supportedFilesystems = [ "ntfs" ];
+
+  fileSystems = {
+    # todo: migrate jellyfin drive
+    "/run/media/mel/Duo" = {
+      device = "/dev/disk/by-label/Duo";
+      fsType = "ntfs-3g";
+      options = [ "rw" "uid=1000" ];
+    };
+  };
 }