From b9eb94499026ad926d37ad71f9ad1364fa99cb06 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Sun, 10 Apr 2016 22:50:30 +0300 Subject: [PATCH] treewide: Mass replace 'dbus_daemon}/bin' to refer to the correct outputs --- nixos/modules/services/system/dbus.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/system/dbus.nix b/nixos/modules/services/system/dbus.nix index 327993443048..3fd1ae145ff8 100644 --- a/nixos/modules/services/system/dbus.nix +++ b/nixos/modules/services/system/dbus.nix @@ -148,8 +148,8 @@ in # the .socket, we use basic.target instead of default.target wantedBy = [ "basic.target" ]; serviceConfig = { - ExecStart = "${pkgs.dbus_daemon}/bin/dbus-daemon --session --address=systemd: --nofork --nopidfile --systemd-activation"; - ExecReload = "${pkgs.dbus_daemon}/bin/dbus-send --print-reply --session --type=method_call --dest=org.freedesktop.DBus / org.freedesktop.DBus.ReloadConfig"; + ExecStart = "${pkgs.dbus_daemon.out}/bin/dbus-daemon --session --address=systemd: --nofork --nopidfile --systemd-activation"; + ExecReload = "${pkgs.dbus_daemon.out}/bin/dbus-send --print-reply --session --type=method_call --dest=org.freedesktop.DBus / org.freedesktop.DBus.ReloadConfig"; }; };