10 lines
236 B
Nix
10 lines
236 B
Nix
{
|
|
# Adds extra arguments to avoid flickering under wayland.
|
|
electronDesktopEntry =
|
|
desktop:
|
|
desktop
|
|
// {
|
|
exec = "${desktop.exec} --enable-features=UseOzonePlatform --ozone-platform=wayland --disable-gpu";
|
|
};
|
|
}
|