Added exfat support and aarch64 emulation

This commit is contained in:
vanten-s 2024-08-05 00:57:30 +02:00
parent 4f3ecb238f
commit 348507b18d
Signed by: vanten-s
GPG key ID: DE3060396884D3F2

View file

@ -16,9 +16,10 @@ in {
# Bootloader. # Bootloader.
boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.canTouchEfiVariables = true;
boot.supportedFilesystems = [ "ntfs" ]; boot.supportedFilesystems = [ "ntfs" "exfat" ];
boot.kernelModules = [ "v4l2loopback" ]; boot.kernelModules = [ "v4l2loopback" ];
boot.extraModulePackages = with config.boot.kernelPackages; [ v4l2loopback.out ]; boot.extraModulePackages = with config.boot.kernelPackages; [ v4l2loopback.out ];
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.