MyNixOS website logo
option

services.outline.package

Outline package to use.

Declarations
Type
package
Default
pkgs.outline
Example
pkgs.outline.overrideAttrs (super: {
  # Ignore the domain part in emails that come from OIDC. This is might
  # be helpful if you want multiple users with different email providers
  # to still land in the same team. Note that this effectively makes
  # Outline a single-team instance.
  patchPhase = ''
    sed -i 's/const domain = parts\.length && parts\[1\];/const domain = "example.com";/g' plugins/oidc/server/auth/oidc.ts
  '';
})