dotfiles/home/fhauser/applications/firefox.nix
2022-04-10 16:15:44 +02:00

10 lines
195 B
Nix

{ pkgs, ... }: {
programs.firefox = {
enable = true;
package = pkgs.firefox-wayland;
};
home.sessionVariables = {
MOZ_ENABLE_WAYLAND = "true";
MOZ_DBUS_REMOTE = "1";
};
}