fix rebuild when using ntfs partitions

needed to define inInitrd, used vfat.nix as a template

+6
+6
nixos/modules/tasks/filesystems/ntfs.nix
··· 2 3 with lib; 4 5 { 6 config = mkIf (any (fs: fs == "ntfs" || fs == "ntfs-3g") config.boot.supportedFilesystems) { 7
··· 2 3 with lib; 4 5 + let 6 + 7 + inInitrd = any (fs: fs == "ntfs") config.boot.initrd.supportedFilesystems; 8 + 9 + in 10 + 11 { 12 config = mkIf (any (fs: fs == "ntfs" || fs == "ntfs-3g") config.boot.supportedFilesystems) { 13