From 36c7c50512aa9af1284dfd93876fe2568801dfe3 Mon Sep 17 00:00:00 2001 From: Philip Potter Date: Tue, 21 Jun 2016 20:51:47 +0100 Subject: [PATCH] services.dbus module: more complete docstring The docstring for the `services.dbus.packages` configuration option only mentioned one directory, but the implementation actually looked for DBus config files in four separate places within the target packages. This commit updates the docstring to reflect the actual implementation behaviour. --- nixos/modules/services/system/dbus.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/nixos/modules/services/system/dbus.nix b/nixos/modules/services/system/dbus.nix index 5583a1bcb3ab..8bcd6f01656d 100644 --- a/nixos/modules/services/system/dbus.nix +++ b/nixos/modules/services/system/dbus.nix @@ -65,10 +65,13 @@ in default = [ ]; description = '' Packages whose D-Bus configuration files should be included in - the configuration of the D-Bus system-wide message bus. - Specifically, every file in + the configuration of the D-Bus system-wide or session-wide + message bus. Specifically, files in the following directories + will be included into their respective DBus configuration paths: pkg/etc/dbus-1/system.d - is included. + pkg/share/dbus-1/system-services + pkg/etc/dbus-1/session.d + pkg/share/dbus-1/services ''; };