nixos-config/overlays/steam/default.nix

10 lines
146 B
Nix

{ ... }:
final: prev: {
steam = prev.steam.overrideAttrs (oldAttrs: {
commandLineArgs = ''
--disable-gpu-compositing
'';
});
}