pwntie/europa: set emulatedSystems to include riscv64-linux

This commit is contained in:
Aaron Bieber 2023-02-23 13:09:06 -07:00
parent f6a30d5134
commit d3134d84e6
No known key found for this signature in database
2 changed files with 4 additions and 1 deletions

View File

@ -74,7 +74,7 @@ in {
};
};
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
boot.binfmt.emulatedSystems = [ "aarch64-linux" "riscv64-linux" ];
nixpkgs.config.allowUnsupportedSystem = true;
boot = {

View File

@ -15,6 +15,9 @@ in {
boot.loader.efi.efiSysMountPoint = "/boot/efi";
boot.kernelPackages = pkgs.linuxPackages_latest;
boot.binfmt.emulatedSystems = [ "aarch64-linux" "riscv64-linux" ];
nixpkgs.config.allowUnsupportedSystem = true;
networking = {
hostName = "pwntie";
networkmanager.enable = true;