No longer use custom firefox

This commit is contained in:
Natsu Kagami 2023-01-25 14:10:01 +01:00
parent da642e44d6
commit b46418e8e4
Signed by: nki
GPG key ID: 7306B3D3C3AD6E51
2 changed files with 0 additions and 35 deletions

View file

@ -1,33 +0,0 @@
{ pkgs, config, lib, ... }:
{
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
];
profiles.nki.id = 0;
profiles.nki.isDefault = true;
profiles.nki.settings = {
"browser.search.region" = "CA";
};
};
}

View file

@ -4,8 +4,6 @@
imports = [ imports = [
# Common configuration # Common configuration
./common.nix ./common.nix
# We use our own firefox
./firefox.nix
# osu! # osu!
./osu.nix ./osu.nix
]; ];