feat: add support for riscv64-linux

This commit is contained in:
Ryan Yin
2023-06-14 00:06:44 +08:00
parent 792a7e7bfc
commit a5f0922ba7
2 changed files with 2 additions and 2 deletions

View File

@@ -28,7 +28,7 @@
nixpkgs.overlays = import ../../overlays args;
# Enable binfmt emulation of aarch64-linux, this is required for cross compilation.
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
boot.binfmt.emulatedSystems = [ "aarch64-linux" "riscv64-linux" ];
# supported fil systems, so we can mount any removable disks with these filesystems
boot.supportedFilesystems = [
"ext4"

View File

@@ -25,7 +25,7 @@
# Enable binfmt emulation of aarch64-linux, this is required for cross compilation.
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
boot.binfmt.emulatedSystems = [ "aarch64-linux" "riscv64-linux" ];
# supported fil systems, so we can mount any removable disks with these filesystems
boot.supportedFilesystems = [
"ext4"