summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAlan Pearce2020-07-16 14:13:39 +0200
committerAlan Pearce2020-07-16 14:13:39 +0200
commit01fb0eee57fed6907ca0855f4df143376d2cf614 (patch)
treeced362efe0556bb3a24b77da1481c02ebab765ff
parentcf89261672b917c6f90961f7893e6915ae1268c2 (diff)
downloadnixfiles-01fb0eee57fed6907ca0855f4df143376d2cf614.tar.lz
nixfiles-01fb0eee57fed6907ca0855f4df143376d2cf614.tar.zst
nixfiles-01fb0eee57fed6907ca0855f4df143376d2cf614.zip
prefect: mount NTFS filesystems
-rw-r--r--system/prefect.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/system/prefect.nix b/system/prefect.nix
index 6413c962..f015beae 100644
--- a/system/prefect.nix
+++ b/system/prefect.nix
@@ -34,6 +34,17 @@
     Option "TripleBuffer" "on"
   '';
 
+  fileSystems."/data" = {
+    label = "Data";
+    fsType = "ntfs";
+    options = ["rw" "uid=1000"];
+  };
+  fileSystems."/windows" = {
+    label = "Windows";
+    fsType = "ntfs";
+    options = ["rw" "uid=1000"];
+  };
+
   services.xserver = {
     xautolock.enable = pkgs.lib.mkForce false;
   };