disable qemu patches for now

This commit is contained in:
Henry Hiles 2025-10-17 14:04:07 -04:00
commit 3b6b385096
No known key found for this signature in database

View file

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