nix-config/home/chromium.nix

18 lines
308 B
Nix
Raw Normal View History

{ pkgs, ... }:
let
inherit (pkgs) ungoogled-chromium;
in
{
programs.chromium = {
enable = true;
package = ungoogled-chromium;
commandLineArgs = [
"--ozone-platform=wayland"
"--enable-wayland-ime"
"--extension-mime-request-handling=always-prompt-for-install"
];
};
}