services.matrix-hookshot.registrationFile

NixOS option

Appservice registration file. As it contains secret tokens, you may not want to add this to the publicly readable Nix store.

type: absolute path
Example
pkgs.writeText "matrix-hookshot-registration" \'\'
  id: matrix-hookshot
  as_token: aaaaaaaaaa
  hs_token: aaaaaaaaaa
  namespaces:
    rooms: []
    users:
      - regex: "@_webhooks_.*:foobar"
        exclusive: true

  sender_localpart: hookshot
  url: "http://localhost:9993"
  rate_limited: false
  \'\'
declared in: nixos/modules/services/matrix/hookshot.nixView source on NixOS/nixpkgs →