18 lines
337 B
Nix
18 lines
337 B
Nix
args:
|
|
|
|
{
|
|
packages = let
|
|
firefox-addons = args.firefox-addons or null;
|
|
in
|
|
if firefox-addons != null then
|
|
with firefox-addons.packages.${args.pkgs.system}; [
|
|
ublock-origin
|
|
linkding-extension
|
|
vimium
|
|
darkreader
|
|
cookies-txt
|
|
sponsorblock
|
|
dearrow
|
|
]
|
|
else [];
|
|
}
|