hippocampus: Enable RISC-V Emulation w/ BinFMT

This commit is contained in:
2024-07-07 11:46:55 -04:00
parent 58dd448d24
commit 7898f567a5
2 changed files with 8 additions and 0 deletions

View File

@@ -9,6 +9,9 @@
[ # Include the results of the hardware scan. [ # Include the results of the hardware scan.
./hardware-configuration.nix ./hardware-configuration.nix
# Allow RISC-V Native Emulation (Binfmt QEMU)
./riscv.nix
# Backup! # Backup!
./backup.nix ./backup.nix

View File

@@ -0,0 +1,5 @@
{ config, pkgs, lib, ... ]: {
boot.binfmt.emulatedSystems = [
"riscv64-linux"
];
}