From 4511f834af6367ace65b1ab43bb52f94be6ec669 Mon Sep 17 00:00:00 2001 From: ryan4yin Date: Thu, 25 May 2023 00:34:58 +0800 Subject: [PATCH] feat: add supported filesystems - ntfs/fat/... --- hosts/msi-rtx4090/default.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/hosts/msi-rtx4090/default.nix b/hosts/msi-rtx4090/default.nix index 439e7d11..e5164d1a 100644 --- a/hosts/msi-rtx4090/default.nix +++ b/hosts/msi-rtx4090/default.nix @@ -29,6 +29,15 @@ # Enable binfmt emulation of aarch64-linux, this is required for cross compilation. boot.binfmt.emulatedSystems = [ "aarch64-linux" ]; + # supported fil systems, so we can mount any removable disks with these filesystems + boot.supportedFilesystems = [ + "ext4" + "btrfs" + "xfs" + #"zfs" + "ntfs" + "fat" "vfat" "exfat" + ]; # Bootloader. boot.loader = {