feat(chrome): add chrome package and wayland args

Chrome defaults to connecting to X11.
This commit is contained in:
514fpv 2024-01-03 15:27:15 +08:00
parent 0410a5c1d9
commit bb631dbf28
Signed by: koishi
SSH key fingerprint: SHA256:axz0uIzzY+5W19i7QOUuiw5LSqhKfCBKPf3L4xFRxLw

13
home/chrome/home.nix Normal file
View 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"
];
};
}