feat: added untrap-for-youtube and social-focus

This commit is contained in:
Nick 2025-10-21 17:41:28 -05:00
parent e1fe8b713c
commit 36d872690a
3 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{ pkgs, ... }:
let
social-focus = pkgs.nur.repos.rycee.firefox-addons.buildFirefoxXpiAddon {
pname = "social-focus";
version = "7.2";
addonId = "{26b4f076-089c-4c69-8497-44b7e5c9faef}";
url = "https://addons.mozilla.org/firefox/downloads/file/4567333/socialfocus-7.2.xpi";
sha256 = "0mz1y88c8n2lnrzmhdc5dd94sisdyabx155kpk79a3k1axphmxmh";
meta = with pkgs.lib; {
homepage = "https://socialfocus.app/";
description = "Hide distracting content on social media";
license = licenses.mit;
platforms = platforms.all;
};
};
in
{
extensions.packages = builtins.attrValues {
inherit (pkgs.nur.repos.rycee.firefox-addons)
bitwarden
sponsorblock
ublock-origin
unpaywall
uninternet
youtube-recommended-videos
youtube-cards
;
inherit
social-focus
;
};
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long