services.supybot.plugins

NixOS option

Attribute set of additional plugins that will be symlinked to the plugin subdirectory. Please note that you still need to add the plugins to the config file (or with !load) using their attribute name.

type: attribute set of absolute path
Default
{ }
Example
let
  plugins = pkgs.fetchzip {
    url = "https://github.com/ProgVal/Supybot-plugins/archive/57c2450c.zip";
    sha256 = "077snf84ibnva3sbpzdfpfma6hcdw7dflwnhg6pw7mgnf0nd84qd";
  };
in
{
  Wikipedia = "${plugins}/Wikipedia";
  Decide = ./supy-decide;
}
declared in: nixos/modules/services/networking/supybot.nixView source on NixOS/nixpkgs →