nix-home/home/firefox.nix

34 lines
687 B
Nix
Raw Normal View History

2022-05-04 14:23:09 +00:00
{ pkgs, config, lib, ... }:
2021-10-09 02:52:28 +00:00
{
2022-05-04 14:23:09 +00:00
programs.firefox = {
enable = true;
package = pkgs.firefox-wayland.override {
cfg = {
# Tridactyl native connector
enableTridactylNative = true;
};
};
extensions = with pkgs.nur.repos.rycee.firefox-addons; [
bitwarden
grammarly
https-everywhere
multi-account-containers
octotree
reddit-enhancement-suite
refined-github
simple-tab-groups
sponsorblock
tridactyl
ublock-origin
web-scrobbler
];
2021-10-09 02:52:28 +00:00
2022-05-04 14:23:09 +00:00
profiles.nki.id = 0;
profiles.nki.isDefault = true;
profiles.nki.settings = {
"browser.search.region" = "CA";
2021-10-09 02:52:28 +00:00
};
2022-05-04 14:23:09 +00:00
};
2021-10-09 02:52:28 +00:00
}