NTFS: Difference between revisions

imported>XBLACKICEx
No edit summary
imported>XBLACKICEx
No edit summary
Line 1: Line 1:
== Enable NTFS support ==
== Enable NTFS support ==
<syntaxHighlight lang=nix>
<syntaxHighlight lang=nix>
boot.supportedFilesystems = [ "ntfs3" ];
boot.supportedFilesystems = [ "ntfs" ];
</syntaxHighlight>
</syntaxHighlight>


Line 10: Line 10:
   fileSystems."/path/to/mount/to" =
   fileSystems."/path/to/mount/to" =
     { device = "/path/to/the/device";
     { device = "/path/to/the/device";
       fsType = "ntfs";  
       fsType = "ntfs3";  
       options = [ "rw" "uid=theUidOfYourUser"];
       options = [ "rw" "uid=theUidOfYourUser"];
     };
     };