diff --git a/modules/ntfs.nix b/modules/ntfs.nix index 731888f..8dd9e28 100644 --- a/modules/ntfs.nix +++ b/modules/ntfs.nix @@ -1,5 +1,10 @@ { config, pkgs, ... }: { # https://nixos.wiki/wiki/NTFS - boot.supportedFilesystems = [ "ntfs" ]; + + # Mounting. + # sudo mount /dev/sdX /mnt -t ntfs3 + + # Enable NTFS support at boot. + #boot.supportedFilesystems = [ "ntfs" ]; }