mirror of
https://github.com/aviallon/nixos-lib.git
synced 2026-04-05 17:27:50 +00:00
[Optimizations/Treewide] fix lto build issues for suyu and mesa
This commit is contained in:
parent
d8a04c95ba
commit
b62253aa5e
2 changed files with 3 additions and 3 deletions
|
|
@ -45,7 +45,7 @@ in {
|
|||
lutris
|
||||
bottles
|
||||
] ++ optionals cfg.gaming.emulation [
|
||||
(optimizePkg { recursive = 0; } my_yuzu)
|
||||
(optimizePkg { recursive = 0; lto = false; } my_yuzu)
|
||||
(optimizePkg { } cfg.gaming.ryujinx.package)
|
||||
];
|
||||
|
||||
|
|
|
|||
|
|
@ -66,9 +66,9 @@ in {
|
|||
|
||||
aviallon.hardware.mesa.internal = mkIf cfg.optimized {
|
||||
package = mkDefault (
|
||||
optimizePkg { } cfg.package);
|
||||
optimizePkg { lto = false; } cfg.package);
|
||||
package32 = mkDefault (
|
||||
optimizePkg { } cfg.package32);
|
||||
optimizePkg { lto = false; } cfg.package32);
|
||||
};
|
||||
|
||||
hardware.opengl = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue