dotfiles/defaults/user-configuration/fhauser/applications/firefox.nix

9 lines
203 B
Nix

{ pkgs, ... }: {
home-manager.users.fhauser = {
programs.firefox = {
enable = true;
package = pkgs.firefox-wayland;
};
home.sessionVariables.MOZ_ENABLE_WAYLAND = "true";
};
}