Disable gpu for electron apps with wrapper-manager

This commit is contained in:
SebastianStork 2024-05-07 12:10:40 +02:00
parent 6626303217
commit 1290098798
8 changed files with 108 additions and 4 deletions

View file

@ -2,6 +2,7 @@
config,
pkgs,
osConfig,
myWrappers,
...
}: {
xdg.userDirs.extraConfig.XDG_SCREENSHOTS_DIR = "${config.xdg.userDirs.pictures}/Screenshots";
@ -32,7 +33,6 @@
pkgs.notepadqq
pkgs.brave
pkgs.spotify
pkgs.cinnamon.nemo-with-extensions
pkgs.webcord
pkgs.jetbrains.idea-community
@ -42,7 +42,9 @@
pkgs.hunspell
pkgs.hunspellDicts.de_DE
pkgs.hunspellDicts.en_US
pkgs.marktext
pkgs.obsidian
(myWrappers.spotify {disableGPU = true;})
(myWrappers.obsidian {disableGPU = true;})
(myWrappers.marktext {disableGPU = true;})
];
}