7 lines
135 B
Nix
7 lines
135 B
Nix
{ config, pkgs, lib, ... }: {
|
|
boot.binfmt.emulatedSystems = [
|
|
"riscv64-linux"
|
|
];
|
|
boot.binfmt.preferStaticEmulators = true;
|
|
}
|