nixfiles/profiles/cross/arm64.nix

9 lines
198 B
Nix
Raw Normal View History

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