···66in
77{
88 # See here for a reference of all the options:
99- # https://github.com/outline/outline/blob/v0.65.2/.env.sample
1010- # https://github.com/outline/outline/blob/v0.65.2/app.json
1111- # https://github.com/outline/outline/blob/v0.65.2/server/env.ts
1212- # https://github.com/outline/outline/blob/v0.65.2/shared/types.ts
99+ # https://github.com/outline/outline/blob/v0.67.0/.env.sample
1010+ # https://github.com/outline/outline/blob/v0.67.0/app.json
1111+ # https://github.com/outline/outline/blob/v0.67.0/server/env.ts
1212+ # https://github.com/outline/outline/blob/v0.67.0/shared/types.ts
1313 # The order is kept the same here to make updating easier.
1414 options.services.outline = {
1515 enable = lib.mkEnableOption (lib.mdDoc "outline");
···123123 description = lib.mdDoc ''
124124 To support uploading of images for avatars and document attachments an
125125 s3-compatible storage must be provided. AWS S3 is recommended for
126126- redundency however if you want to keep all file storage local an
126126+ redundancy however if you want to keep all file storage local an
127127 alternative such as [minio](https://github.com/minio/minio)
128128 can be used.
129129···435435 '';
436436 };
437437438438+ sentryTunnel = lib.mkOption {
439439+ type = lib.types.nullOr lib.types.str;
440440+ default = null;
441441+ description = lib.mdDoc ''
442442+ Optionally add a
443443+ [Sentry proxy tunnel](https://docs.sentry.io/platforms/javascript/troubleshooting/#using-the-tunnel-option)
444444+ for bypassing ad blockers in the UI.
445445+ '';
446446+ };
447447+438448 logo = lib.mkOption {
439449 type = lib.types.nullOr lib.types.str;
440450 default = null;
···621631 DEBUG = cfg.debugOutput;
622632 GOOGLE_ANALYTICS_ID = lib.optionalString (cfg.googleAnalyticsId != null) cfg.googleAnalyticsId;
623633 SENTRY_DSN = lib.optionalString (cfg.sentryDsn != null) cfg.sentryDsn;
634634+ SENTRY_TUNNEL = lib.optionalString (cfg.sentryTunnel != null) cfg.sentryTunnel;
624635 TEAM_LOGO = lib.optionalString (cfg.logo != null) cfg.logo;
625636 DEFAULT_LANGUAGE = cfg.defaultLanguage;
626637