2025-01-13 11:52:09 +08:00
|
|
|
{
|
|
|
|
pkgs,
|
|
|
|
lib,
|
|
|
|
config,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
lib.mkIf config.passthrough.gui {
|
2024-01-03 15:27:15 +08:00
|
|
|
programs.chromium = {
|
|
|
|
enable = true;
|
|
|
|
package = pkgs.google-chrome;
|
|
|
|
commandLineArgs = [
|
|
|
|
"--enable-features=UseOzonePlatform"
|
|
|
|
"--ozone-platform=wayland"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|