dotfiles/home/fhauser/applications/firefox.nix

10 lines
187 B
Nix

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