1
0
Fork 0
nixos-config/home-manager/roles/firefox.nix

14 lines
411 B
Nix
Raw Normal View History

2022-12-02 00:22:52 +00:00
{pkgs, ...}: {
2021-07-19 22:16:43 +00:00
programs.browserpass = {
2022-03-08 01:42:46 +00:00
browsers = ["firefox"];
2021-07-19 22:16:43 +00:00
enable = true;
};
2022-12-02 02:09:19 +00:00
home.packages = [pkgs.firefox];
2021-06-07 00:40:38 +00:00
home.sessionVariables = {
2021-06-07 22:08:46 +00:00
# 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
2021-06-07 00:40:38 +00:00
MOZ_DBUS_REMOTE = 1;
};
2020-05-22 01:32:34 +00:00
}