This repository has been archived on 2023-10-08. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-home/firefox-addons/default.nix
Pim Kunis 2cb3cd82cf install nicotine+
remove bypass paywalls clean for now because it opens a page every time
I open Firefox
2023-09-30 12:56:34 +02:00

22 lines
418 B
Nix

{pkgs, nurpkgs, ...}@args:
let
rycee-addons = with nurpkgs.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