From 210d1ab3e3b6b9b6f0233580055d5e2d4500a7fb Mon Sep 17 00:00:00 2001 From: jopejoe1 Date: Mon, 15 Apr 2024 07:47:43 +0200 Subject: [PATCH] enable aarch64 emulation --- systems/kuraokami/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systems/kuraokami/default.nix b/systems/kuraokami/default.nix index 4e87239..4c45f0d 100644 --- a/systems/kuraokami/default.nix +++ b/systems/kuraokami/default.nix @@ -128,5 +128,5 @@ nix.settings.system-features = [ "gccarch-alderlake" "benchmark" "big-parallel" "kvm" "nixos-test" ] ++ map (x: "gccarch-${x}") (lib.systems.architectures.inferiors.alderlake or [ ]); - boot.binfmt.emulatedSystems = [ "riscv64-linux" ]; + boot.binfmt.emulatedSystems = [ "riscv64-linux" "aarch64-linux" ]; }