summary refs log tree commit diff
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2016-04-10 22:50:30 +0300
committerTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2016-04-14 08:32:20 +0300
commitb9eb94499026ad926d37ad71f9ad1364fa99cb06 (patch)
tree2beb9ab397e8ba12dc9727c582d7ecdfbe3751e1
parent794f07d4e42afe3f2410355bfb9cde3c498ab432 (diff)
downloadnixpkgs-b9eb94499026ad926d37ad71f9ad1364fa99cb06.tar
nixpkgs-b9eb94499026ad926d37ad71f9ad1364fa99cb06.tar.gz
nixpkgs-b9eb94499026ad926d37ad71f9ad1364fa99cb06.tar.bz2
nixpkgs-b9eb94499026ad926d37ad71f9ad1364fa99cb06.tar.lz
nixpkgs-b9eb94499026ad926d37ad71f9ad1364fa99cb06.tar.xz
nixpkgs-b9eb94499026ad926d37ad71f9ad1364fa99cb06.tar.zst
nixpkgs-b9eb94499026ad926d37ad71f9ad1364fa99cb06.zip
treewide: Mass replace 'dbus_daemon}/bin' to refer to the correct outputs
-rw-r--r--nixos/modules/services/system/dbus.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/system/dbus.nix b/nixos/modules/services/system/dbus.nix
index 32799344304..3fd1ae145ff 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";
         };
       };