9 lines
198 B
Nix
9 lines
198 B
Nix
{ pkgs, lib, ... }: {
|
|
boot.binfmt = {
|
|
emulatedSystems = [ "aarch64-linux" ];
|
|
registrations.aarch64-linux = {
|
|
interpreter = lib.mkForce "${pkgs.qemu}/bin/qemu-aarch64";
|
|
};
|
|
};
|
|
}
|