Chromium with wayland switches

(chromium.override {
  commandLineArgs = [
    "--enable-features=UseOzonePlatform"
    "--ozone-platform=wayland"
  ];
})

EDIT 2022-05-12: Recent versions of Chromium have added auto-detection for Wayland:

(chromium.override {
  commandLineArgs = [
    "--ozone-platform-hint=auto"
  ];
})
3 Likes