allow reading windows ntfs drives

This commit is contained in:
Noah Masur 2023-02-17 18:15:23 -05:00
parent e8c5a10df7
commit 58a0e6166d

View File

@ -35,4 +35,9 @@
# Allows GRUB to interact with the UEFI/BIOS I guess
efi.canTouchEfiVariables = true;
};
# Allow reading from Windows drives
boot.supportedFilesystems =
lib.mkIf (config.physical && pkgs.stdenv.isLinux) [ "ntfs" ];
}