From 1638951511bd35066957c376ae35b964cb103dfd Mon Sep 17 00:00:00 2001 From: joachimschmidt557 Date: Tue, 1 Feb 2022 21:47:46 +0100 Subject: [PATCH] dustbowl: add binfmt emulatedSystems --- nixos/dustbowl.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/nixos/dustbowl.nix b/nixos/dustbowl.nix index 92a7035..35bc754 100644 --- a/nixos/dustbowl.nix +++ b/nixos/dustbowl.nix @@ -52,6 +52,12 @@ "kernel.perf_event_paranoid" = 1; }; + # Add qemu-binfmt for ARM and AArch64 + boot.binfmt.emulatedSystems = [ + "armv7l-linux" + "aarch64-linux" + ]; + networking.hostName = "dustbowl"; # Define your hostname. networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. networking.wireless.interfaces = [ "wlp2s0" ];