nixos/home/chrome/home.nix

14 lines
255 B
Nix
Raw Normal View History

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