Fix disabling optimizations in iso builds.

This commit is contained in:
Tom Alexander 2025-05-10 16:41:55 -04:00
parent c587fcc2ac
commit 158188c4c6
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE

View File

@ -137,7 +137,7 @@
isoImage.makeEfiBootable = true; isoImage.makeEfiBootable = true;
isoImage.makeUsbBootable = true; isoImage.makeUsbBootable = true;
me.buildingIso = true; me.buildingIso = true;
me.optimizations.enable = false; me.optimizations.enable = nixpkgs.lib.mkForce false;
} }
]; ];
} }
@ -164,7 +164,7 @@
isoImage.makeEfiBootable = true; isoImage.makeEfiBootable = true;
isoImage.makeUsbBootable = true; isoImage.makeUsbBootable = true;
me.buildingIso = true; me.buildingIso = true;
me.optimizations.enable = false; me.optimizations.enable = nixpkgs.lib.mkForce false;
} }
]; ];
} }
@ -189,7 +189,7 @@
isoImage.makeEfiBootable = true; isoImage.makeEfiBootable = true;
isoImage.makeUsbBootable = true; isoImage.makeUsbBootable = true;
me.buildingIso = true; me.buildingIso = true;
me.optimizations.enable = false; me.optimizations.enable = nixpkgs.lib.mkForce false;
} }
]; ];
} }