nixfiles/profiles/cross/arm64.nix
2022-01-16 11:37:09 +00:00

9 lines
198 B
Nix

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