9 lines
162 B
Nix
9 lines
162 B
Nix
{ ... }:
|
|
{
|
|
imports = [ ./chromium.nix ];
|
|
programs.chromium.commandLineArgs = [
|
|
"--enable-features=UseOzonePlatform"
|
|
"--ozone-platform=wayland"
|
|
];
|
|
}
|