10 lines
146 B
Nix
10 lines
146 B
Nix
{ ... }:
|
|
|
|
final: prev: {
|
|
steam = prev.steam.overrideAttrs (oldAttrs: {
|
|
commandLineArgs = ''
|
|
--disable-gpu-compositing
|
|
'';
|
|
});
|
|
}
|