From 78c9dec4c4573e4b940702ed79443e139f45565c Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Sat, 25 Jan 2025 16:22:04 -0500 Subject: [PATCH] Disable rom name override. The latest nixpkgs does not support overriding the name so I am removing it now for compatibility. --- nix/configuration/roles/sm64ex/default.nix | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/nix/configuration/roles/sm64ex/default.nix b/nix/configuration/roles/sm64ex/default.nix index 9705955..f8d2404 100644 --- a/nix/configuration/roles/sm64ex/default.nix +++ b/nix/configuration/roles/sm64ex/default.nix @@ -27,14 +27,13 @@ sm64ex ]; - nixpkgs.overlays = [ - (final: prev: { - sm4ex = prev.sm64ex.override { - baseRom.name = "SuperMario64.z64"; - }; - }) - ]; - + # nixpkgs.overlays = [ + # (final: prev: { + # sm4ex = prev.sm64ex.override { + # baseRom.name = "SuperMario64.z64"; + # }; + # }) + # ]; }) ] );