33 lines
734 B
Nix
33 lines
734 B
Nix
{nurpkgs, lib, ...}@args:
|
|
let
|
|
rycee-addons = nurpkgs.repos.rycee.firefox-addons;
|
|
own-addons = import ./derivations.nix args;
|
|
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 own-addons; [
|
|
http-version-indicator
|
|
indicatetls
|
|
sixindicator
|
|
])
|
|
];
|
|
sue = with rycee-addons; [
|
|
ublock-origin
|
|
istilldontcareaboutcookies
|
|
keepassxc-browser
|
|
own-addons.simple-style-fox-2
|
|
];
|
|
}
|