dotfiles/home/fhauser/applications/firefox.nix
2024-04-10 10:53:41 +07:00

11 lines
187 B
Nix

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