mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-24 17:23:09 +01:00
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"
|
||
|
];
|
||
|
};
|
||
|
}
|