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