mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-26 02:03:21 +01:00
61b5a5dd31
Fixes issues encountered with xwayland + ironbar and fcitx5 not working with the wayland version. See: https://wiki.archlinux.org/title/Chromium#Native_Wayland_support
18 lines
308 B
Nix
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"
|
|
];
|
|
};
|
|
}
|