secrets subscriber: add provider as dep to controlled service

This commit is contained in:
Daniel Barlow 2024-09-01 09:56:59 +01:00
parent 14abdd9998
commit e590c0ad3f
1 changed files with 2 additions and 1 deletions

View File

@ -46,5 +46,6 @@ in service.overrideAttrs(o: {
buildInputs = (lim.orEmpty o.buildInputs) ++
optional (watched-service != null) watcher;
dependencies = (lim.orEmpty o.dependencies) ++
optional (watched-service != null) watcher;
optional (watched-service != null) watcher ++
optional (watched-service != null) watched-service;
})