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.nix

34 lines
745 B
Nix
Raw Permalink Normal View History

{nurpkgs, lib, ...}@args:
2023-09-24 12:57:48 +00:00
let
rycee-addons = nurpkgs.repos.rycee.firefox-addons;
2023-10-08 09:44:31 +00:00
custom-addons = import ./custom-addons.nix args;
2023-09-24 12:57:48 +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
])
2023-10-08 09:44:31 +00:00
(with custom-addons; [
http-version-indicator
indicatetls
sixindicator
])
];
sue = with rycee-addons; [
ublock-origin
istilldontcareaboutcookies
keepassxc-browser
2023-10-08 09:44:31 +00:00
custom-addons.simple-style-fox-2
];
}