added firefox extensions with NUR

This commit is contained in:
twoneis 2023-11-27 20:33:35 +01:00
parent 7664de17fa
commit 0472dc6392
4 changed files with 35 additions and 3 deletions

View file

@ -1,5 +1,16 @@
{ ... }: {
{ pkgs, ... }: {
programs.firefox = {
enable = true;
profiles = {
"default" = {
extensions = with pkgs.nur.repos.rycee.firefox-addons; [
bitwarden
sponsorblock
ublock-origin
consent-o-matic
pronoundb
];
};
};
};
}