nix-config/home/chromium.nix
Donovan Glover 61b5a5dd31
home-manager: Add chromium config
Fixes issues encountered with xwayland + ironbar and fcitx5 not
working with the wayland version.

See: https://wiki.archlinux.org/title/Chromium#Native_Wayland_support
2024-07-15 17:02:38 -04:00

18 lines
308 B
Nix

{ 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"
];
};
}