13 lines
266 B
Nix
13 lines
266 B
Nix
{ inputs, pkgs, ... }:
|
|
|
|
let
|
|
inherit (pkgs.stdenv.hostPlatform) system;
|
|
in
|
|
{
|
|
programs.librewolf = {
|
|
profiles.default.extensions.packages =
|
|
with inputs.nur.legacyPackages."${system}".repos.rycee.firefox-addons; [
|
|
zotero-connector
|
|
];
|
|
};
|
|
}
|