dotfiles/home-modules/applications/firefox.nix

11 lines
187 B
Nix

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