nix/config/firefox/extensions.nix
2025-10-09 21:56:52 +02:00

14 lines
254 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
vimium
cookies-txt
]
else [];
}