nvidia: disable hardware accel for discord, teams and steam

This commit is contained in:
Christoph Hollizeck 2024-10-30 10:54:18 +01:00
parent 7cd3b0afc6
commit 27a2497bdf
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 1763BB530F50279E
4 changed files with 29 additions and 2 deletions

View file

@ -0,0 +1,9 @@
{ ... }:
final: prev: {
discord = prev.discord.overrideAttrs (oldAttrs: {
commandLineArgs = ''
--disable-gpu-compositing
'';
});
}

View file

@ -0,0 +1,9 @@
{ ... }:
final: prev: {
steam = prev.steam.overrideAttrs (oldAttrs: {
commandLineArgs = ''
--disable-gpu-compositing
'';
});
}

View file

@ -0,0 +1,9 @@
{ ... }:
final: prev: {
teams-for-linux = prev.teams-for-linux.overrideAttrs (oldAttrs: {
commandLineArgs = ''
--disable-gpu-compositing
'';
});
}