8 lines
182 B
Nix
8 lines
182 B
Nix
{ config, pkgs, lib, ... }: {
|
|
# TODO: rename to emulation?
|
|
boot.binfmt.emulatedSystems = [
|
|
"riscv64-linux" "aarch64-linux"
|
|
];
|
|
boot.binfmt.preferStaticEmulators = true;
|
|
}
|