2023-10-19 07:34:06 +00:00
|
|
|
pkgs: lib:
|
2023-10-08 14:57:57 +00:00
|
|
|
let
|
2023-10-19 07:34:06 +00:00
|
|
|
rycee-addons = pkgs.nur.repos.rycee.firefox-addons;
|
|
|
|
custom-addons = import ./custom-addons.nix pkgs lib;
|
2023-10-08 14:57:57 +00:00
|
|
|
in
|
|
|
|
{
|
|
|
|
default = lib.concatLists [
|
|
|
|
(with rycee-addons; [
|
|
|
|
ublock-origin
|
|
|
|
clearurls
|
|
|
|
cookie-autodelete
|
|
|
|
istilldontcareaboutcookies
|
|
|
|
keepassxc-browser
|
|
|
|
redirector
|
|
|
|
ublacklist
|
|
|
|
umatrix
|
|
|
|
violentmonkey
|
|
|
|
boring-rss
|
|
|
|
# rycee.bypass-paywalls-clean
|
|
|
|
])
|
|
|
|
(with custom-addons; [
|
|
|
|
http-version-indicator
|
|
|
|
indicatetls
|
|
|
|
sixindicator
|
|
|
|
])
|
|
|
|
];
|
|
|
|
sue = with rycee-addons; [
|
|
|
|
ublock-origin
|
|
|
|
istilldontcareaboutcookies
|
|
|
|
keepassxc-browser
|
|
|
|
custom-addons.simple-style-fox-2
|
|
|
|
];
|
|
|
|
}
|