From 348507b18dc6aea257f524f2401bb0caafc13f94 Mon Sep 17 00:00:00 2001 From: vanten-s Date: Mon, 5 Aug 2024 00:57:30 +0200 Subject: [PATCH] Added exfat support and aarch64 emulation --- configuration.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index 3c5fe15..9d1f26e 100644 --- a/configuration.nix +++ b/configuration.nix @@ -16,9 +16,10 @@ in { # Bootloader. boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; - boot.supportedFilesystems = [ "ntfs" ]; + boot.supportedFilesystems = [ "ntfs" "exfat" ]; boot.kernelModules = [ "v4l2loopback" ]; boot.extraModulePackages = with config.boot.kernelPackages; [ v4l2loopback.out ]; + boot.binfmt.emulatedSystems = [ "aarch64-linux" ]; # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.