diff --git a/home/chrome/home.nix b/home/chrome/home.nix new file mode 100644 index 00000000..acf11ae3 --- /dev/null +++ b/home/chrome/home.nix @@ -0,0 +1,13 @@ +{ pkgs +, lib +, config +, ...}: lib.mkIf config.passthrough.gui { + programs.chromium = { + enable = true; + package = pkgs.google-chrome; + commandLineArgs = [ + "--enable-features=UseOzonePlatform" + "--ozone-platform=wayland" + ]; + }; +}