mv binfmt to quadraticpc

This commit is contained in:
Henry Hiles 2025-09-13 16:11:13 -04:00
commit 4226f41cc4
No known key found for this signature in database
2 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,11 @@
{
boot.binfmt.emulatedSystems = ["aarch64-linux"];
nixpkgs.overlays = [
(_: super: {
# Because of https://github.com/NixOS/nixpkgs/pull/378579
qemu = super.qemu.overrideAttrs (old: {
patches = (old.patches or []) ++ [./qemu.patch];
});
})
];
}