1
0
Fork 0
nixos-config/home-manager/roles/firefox.nix
2022-12-02 03:09:19 +01:00

14 lines
411 B
Nix

{pkgs, ...}: {
programs.browserpass = {
browsers = ["firefox"];
enable = true;
};
home.packages = [pkgs.firefox];
home.sessionVariables = {
# So that electron can open firefox links. See
# Issue: https://github.com/electron/electron/issues/28436
# Solution from: https://wiki.archlinux.org/title/Firefox#Applications_on_Wayland_can_not_launch_Firefox
MOZ_DBUS_REMOTE = 1;
};
}