From 3b6b38509614cfcb4adeb294a0b7268c60877377 Mon Sep 17 00:00:00 2001 From: Henry-Hiles Date: Fri, 17 Oct 2025 14:04:07 -0400 Subject: [PATCH] disable qemu patches for now --- clients/quadraticpc/binfmt/default.nix | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/clients/quadraticpc/binfmt/default.nix b/clients/quadraticpc/binfmt/default.nix index 5b180c0..ce2b4cd 100644 --- a/clients/quadraticpc/binfmt/default.nix +++ b/clients/quadraticpc/binfmt/default.nix @@ -1,11 +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 ]; - }); - }) - ]; + # 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 ]; + # }); + # }) + # ]; }