"Inlining" patches in kustomization.yaml

Hi,

I’ve Kubernetes yaml configurations where most of the actual configuration is defined in the base, but I have lots of variants with only minor customizations.
Is it possible to somehow combine contents of dk/kustomization.yaml and dk/service-patch.yaml below into a dk.yaml that would be placed in the top-level directory?

Here’s an extract of what my config looks like:

kustomization.yaml:
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- dk
- fi
- se
- …

dk/kustomization.yaml:
nameSuffix: -dk
bases:
- …/base-prod
patchesJson6902:
- target:
version: v1
kind: Service
name: foo
path: service-patch.yaml

dk/service-patch.yaml:
- op: replace
path: /spec/selector
value:
app: foo-dk
env: production

Cluster information:

Kubernetes version: 1.15
Cloud being used: AWS
Installation method: N/A
Host OS: N/A
CNI and version: N/A
CRI and version: N/A