diff --git a/nixos/hardware/boot.nix b/nixos/hardware/boot.nix index 3d30be8..875b586 100644 --- a/nixos/hardware/boot.nix +++ b/nixos/hardware/boot.nix @@ -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" ]; + }