feat(chrome): add chrome package and wayland args
Chrome defaults to connecting to X11.
This commit is contained in:
parent
0410a5c1d9
commit
bb631dbf28
13
home/chrome/home.nix
Normal file
13
home/chrome/home.nix
Normal file
|
@ -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"
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue