nix/config/firefox/extensions.nix
2025-11-14 22:31:24 +01:00

15 lines
293 B
Nix

args:
{
packages = let
firefox-addons = args.firefox-addons or null;
in
if firefox-addons != null then
with firefox-addons.packages.${args.pkgs.stdenv.hostPlatform.system}; [
ublock-origin
vimium
cookies-txt
darkreader
]
else [];
}