17 lines
261 B
Nix
17 lines
261 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"
|
|
];
|
|
};
|
|
}
|