Add firefox extensions as an overlay

This commit is contained in:
Patrick Menking 2024-09-18 07:15:45 -04:00
parent a78ea7813f
commit ab85d734fd
2 changed files with 5 additions and 2 deletions

View file

@ -13,8 +13,11 @@
system = "x86_64-linux";
inherit (inputs.nixpkgs) lib;
firefox_overlay = final: _prev: {firefox = import inputs.firefox-addons {system = final.system;};};
overlays = [firefox_overlay];
pkgs = import inputs.nixpkgs {
inherit system;
inherit system overlays;
config.allowUnfree = true;
};

View file

@ -276,7 +276,7 @@
OfferToSaveLogins = false;
PasswordManagerEnabled = false;
};
profiles.profiles.crow.extensions = with inpits.firefox-addons; [ bitwarden-password-manager ublock-origin ];
profiles.profiles.crow.extensions = with pkgs; [ bitwarden-password-manager ublock-origin ];
};
};
}