From cb77bb3b44295190eea324dfb70c92ca2d245a50 Mon Sep 17 00:00:00 2001 From: illustris Date: Sat, 3 Dec 2022 21:23:10 +0530 Subject: [PATCH] enable rv32 emulation --- configuration.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index 5ac57aa..ebe2e36 100644 --- a/configuration.nix +++ b/configuration.nix @@ -19,7 +19,10 @@ in # Support ARM builds boot = { - binfmt.emulatedSystems = [ "aarch64-linux" ]; + binfmt.emulatedSystems = [ + "aarch64-linux" + "riscv64-linux" + ]; kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;