{ pkgs, lib, config, ... }: lib.mkIf config.passthrough.gui { programs.chromium = { enable = true; package = pkgs.google-chrome; commandLineArgs = [ "--enable-features=UseOzonePlatform" "--ozone-platform=wayland" ]; }; }