diff --git a/chart/templates/nexus-repository-manager/nexus-repository-manager-helmrelease.yaml b/chart/templates/nexus-repository-manager/nexus-repository-manager-helmrelease.yaml
index 35dbf12695932f15abcc4857199dc7bcf3e540e1..d1c4ba89773e5deb131a7333d8e8297b7e0c648b 100644
--- a/chart/templates/nexus-repository-manager/nexus-repository-manager-helmrelease.yaml
+++ b/chart/templates/nexus-repository-manager/nexus-repository-manager-helmrelease.yaml
@@ -23,6 +23,10 @@ spec:
 
   {{- toYaml $fluxSettingsNexus | nindent 2 }}
 
+  {{- if .Values.addons.nexus.postRenderers }}
+  postRenderers:
+  {{ toYaml .Values.addons.nexus.postRenderers | nindent 4 }}
+  {{- end }}
   valuesFrom:
     - name: {{ .Release.Name }}-nexus-repository-manager-values
       kind: Secret
diff --git a/chart/values.yaml b/chart/values.yaml
index cb73d34767b55f3d4a77f05b9191857323e8c91c..b0d41b327c1418217bbd4cce830310e5c30ebe4b 100644
--- a/chart/values.yaml
+++ b/chart/values.yaml
@@ -727,6 +727,9 @@ addons:
     # -- Values to passthrough to the nxrm chart: https://repo1.dso.mil/platform-one/big-bang/apps/sandbox/nexus.git
     values: {}
 
+    # -- Post Renderers.  See docs/postrenders.md
+    postRenderers: []
+
   sonarqube:
     # -- Toggle deployment of SonarQube.
     enabled: false