services.mediawiki.extensions

NixOS option

Attribute set of paths whose content is copied to the extensions subdirectory of the MediaWiki installation and enabled in configuration. Use null instead of path to enable extensions that are part of MediaWiki.

type: attribute set of (null or absolute path)
Default
{ }
Example
{
  Matomo = pkgs.fetchzip {
    url = "https://github.com/DaSchTour/matomo-mediawiki-extension/archive/v4.0.1.tar.gz";
    sha256 = "0g5rd3zp0avwlmqagc59cg9bbkn3r7wx7p6yr80s644mj6dlvs1b";
  };
  ParserFunctions = null;
}
declared in: nixos/modules/services/web-apps/mediawiki.nixView source on NixOS/nixpkgs →