23 lines
408 B
Nix
23 lines
408 B
Nix
|
{pkgs, ...}@args:
|
||
|
let
|
||
|
rycee-addons = with pkgs.nur.repos.rycee.firefox-addons; [
|
||
|
ublock-origin
|
||
|
clearurls
|
||
|
cookie-autodelete
|
||
|
istilldontcareaboutcookies
|
||
|
keepassxc-browser
|
||
|
redirector
|
||
|
ublacklist
|
||
|
umatrix
|
||
|
violentmonkey
|
||
|
boring-rss
|
||
|
bypass-paywalls-clean
|
||
|
];
|
||
|
own-addons = with import ./derivations.nix args; [
|
||
|
http-version-indicator
|
||
|
indicatetls
|
||
|
sixindicator
|
||
|
];
|
||
|
in
|
||
|
rycee-addons ++ own-addons
|