nixos-config/home/browsers/firefox.nix
Felix Schröter f3fb292dd1
feat(browsers): add firefox
- add nur
- set firefox as main browser
- move browsers into separate modules
2020-08-15 00:35:15 +02:00

35 lines
642 B
Nix

{ config, pkgs, ... }:
let
firefox-addons = pkgs.nur.repos.rycee.firefox-addons;
in
{
programs.firefox = {
enable = true;
package = pkgs.firefox.override {
cfg = {
enableFXCastBridge = true;
};
};
profiles = {
private = {
id = 0;
};
work = {
id = 1;
};
};
extensions = with firefox-addons; [
https-everywhere
ublock-origin
decentraleyes
vimium
ipfs-companion
firefox-addons."1password-x-password-manager"
darkreader
# languagetool # not available :/
# fx_cast # TODO not published yet
];
};
}