services.outline.package
NixOS option
Outline package to use.
type: packageDefault
pkgs.outline
Example
declared in: nixos/modules/services/web-apps/outline.nixView source on NixOS/nixpkgs →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
'';
})