mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-26 19:31:31 +01:00
24 lines
410 B
Nix
24 lines
410 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
...
|
|
}: {
|
|
home.packages = with pkgs; [
|
|
# use wayland version of firefox
|
|
firefox-wayland
|
|
];
|
|
|
|
programs =
|
|
let commandLineArgs = [ "--enable-wayland-ime" "--ozone-platform=wayland" ];
|
|
in {
|
|
chromium = {
|
|
enable = true;
|
|
inherit commandLineArgs;
|
|
};
|
|
google-chrome = {
|
|
enable = true;
|
|
inherit commandLineArgs;
|
|
};
|
|
};
|
|
}
|