secrets/subscriber don't depend on the services we're watching
this means a watched service can stop and start without killing the subscriber, and that we can watch for services that don't yet exist
This commit is contained in:
@@ -56,8 +56,5 @@ service.overrideAttrs (o: {
|
||||
buildInputs = (lim.orEmpty o.buildInputs) ++ optional (watch != []) watcher;
|
||||
dependencies =
|
||||
(lim.orEmpty o.dependencies)
|
||||
# ++ optionals
|
||||
# (watch != [])
|
||||
# ([ watcher ] ++ watched-services);
|
||||
;
|
||||
++ optional (watch != []) watcher;
|
||||
})
|
||||
|
Reference in New Issue
Block a user