dbus: Fix for new 1.10 version
(cherry picked from commit 68a4a6df3971d66aa988bba680351a30fbadbed3)
This commit is contained in:
parent
f04e0e70e8
commit
60b3484928
@ -10,6 +10,16 @@ let
|
|||||||
|
|
||||||
homeDir = "/var/run/dbus";
|
homeDir = "/var/run/dbus";
|
||||||
|
|
||||||
|
systemExtraxml = concatStrings (flip concatMap cfg.packages (d: [
|
||||||
|
"<servicedir>${d}/share/dbus-1/system-services</servicedir>"
|
||||||
|
"<includedir>${d}/etc/dbus-1/system.d</includedir>"
|
||||||
|
]));
|
||||||
|
|
||||||
|
sessionExtraxml = concatStrings (flip concatMap cfg.packages (d: [
|
||||||
|
"<servicedir>${d}/share/dbus-1/services</servicedir>"
|
||||||
|
"<includedir>${d}/etc/dbus-1/session.d</includedir>"
|
||||||
|
]));
|
||||||
|
|
||||||
configDir = pkgs.stdenv.mkDerivation {
|
configDir = pkgs.stdenv.mkDerivation {
|
||||||
name = "dbus-conf";
|
name = "dbus-conf";
|
||||||
|
|
||||||
@ -19,47 +29,17 @@ let
|
|||||||
buildCommand = ''
|
buildCommand = ''
|
||||||
mkdir -p $out
|
mkdir -p $out
|
||||||
|
|
||||||
cp -v ${pkgs.dbus.daemon}/etc/dbus-1/system.conf $out/system.conf
|
sed '${./dbus-system-local.conf.in}' \
|
||||||
|
-e 's,@servicehelper@,${config.security.wrapperDir}/dbus-daemon-launch-helper,g' \
|
||||||
|
-e 's,@extra@,${systemExtraxml},' \
|
||||||
|
> "$out/system-local.conf"
|
||||||
|
|
||||||
# !!! Hm, these `sed' calls are rather error-prone...
|
sed '${./dbus-session-local.conf.in}' \
|
||||||
|
-e 's,@extra@,${sessionExtraxml},' \
|
||||||
# Tell the daemon where the setuid wrapper around
|
> "$out/session-local.conf"
|
||||||
# dbus-daemon-launch-helper lives.
|
'';
|
||||||
sed -i $out/system.conf \
|
|
||||||
-e 's|<servicehelper>.*/libexec/dbus-daemon-launch-helper|<servicehelper>${config.security.wrapperDir}/dbus-daemon-launch-helper|'
|
|
||||||
|
|
||||||
# Add the system-services and system.d directories to the system
|
|
||||||
# bus search path.
|
|
||||||
sed -i $out/system.conf \
|
|
||||||
-e 's|<standard_system_servicedirs/>|${systemServiceDirs}|' \
|
|
||||||
-e 's|<includedir>system.d</includedir>|${systemIncludeDirs}|'
|
|
||||||
|
|
||||||
cp ${pkgs.dbus.daemon}/etc/dbus-1/session.conf $out/session.conf
|
|
||||||
|
|
||||||
# Add the services and session.d directories to the session bus
|
|
||||||
# search path.
|
|
||||||
sed -i $out/session.conf \
|
|
||||||
-e 's|<standard_session_servicedirs />|${sessionServiceDirs}&|' \
|
|
||||||
-e 's|<includedir>session.d</includedir>|${sessionIncludeDirs}|'
|
|
||||||
''; # */
|
|
||||||
};
|
};
|
||||||
|
|
||||||
systemServiceDirs = concatMapStrings
|
|
||||||
(d: "<servicedir>${d}/share/dbus-1/system-services</servicedir> ")
|
|
||||||
cfg.packages;
|
|
||||||
|
|
||||||
systemIncludeDirs = concatMapStrings
|
|
||||||
(d: "<includedir>${d}/etc/dbus-1/system.d</includedir> ")
|
|
||||||
cfg.packages;
|
|
||||||
|
|
||||||
sessionServiceDirs = concatMapStrings
|
|
||||||
(d: "<servicedir>${d}/share/dbus-1/services</servicedir> ")
|
|
||||||
cfg.packages;
|
|
||||||
|
|
||||||
sessionIncludeDirs = concatMapStrings
|
|
||||||
(d: "<includedir>${d}/etc/dbus-1/session.d</includedir> ")
|
|
||||||
cfg.packages;
|
|
||||||
|
|
||||||
in
|
in
|
||||||
|
|
||||||
{
|
{
|
||||||
@ -72,7 +52,7 @@ in
|
|||||||
|
|
||||||
enable = mkOption {
|
enable = mkOption {
|
||||||
type = types.bool;
|
type = types.bool;
|
||||||
default = true;
|
default = false;
|
||||||
internal = true;
|
internal = true;
|
||||||
description = ''
|
description = ''
|
||||||
Whether to start the D-Bus message bus daemon, which is
|
Whether to start the D-Bus message bus daemon, which is
|
||||||
@ -82,7 +62,7 @@ in
|
|||||||
|
|
||||||
packages = mkOption {
|
packages = mkOption {
|
||||||
type = types.listOf types.path;
|
type = types.listOf types.path;
|
||||||
default = [];
|
default = [ ];
|
||||||
description = ''
|
description = ''
|
||||||
Packages whose D-Bus configuration files should be included in
|
Packages whose D-Bus configuration files should be included in
|
||||||
the configuration of the D-Bus system-wide message bus.
|
the configuration of the D-Bus system-wide message bus.
|
||||||
@ -129,10 +109,10 @@ in
|
|||||||
permissions = "u+rx,g+rx,o-rx";
|
permissions = "u+rx,g+rx,o-rx";
|
||||||
};
|
};
|
||||||
|
|
||||||
services.dbus.packages =
|
services.dbus.packages = [
|
||||||
[ "/nix/var/nix/profiles/default"
|
pkgs.dbus
|
||||||
config.system.path
|
config.system.path
|
||||||
];
|
];
|
||||||
|
|
||||||
# Don't restart dbus-daemon. Bad things tend to happen if we do.
|
# Don't restart dbus-daemon. Bad things tend to happen if we do.
|
||||||
systemd.services.dbus.reloadIfChanged = true;
|
systemd.services.dbus.reloadIfChanged = true;
|
||||||
|
@ -689,6 +689,8 @@ in
|
|||||||
"systemd/system-generators" = { source = generators; };
|
"systemd/system-generators" = { source = generators; };
|
||||||
});
|
});
|
||||||
|
|
||||||
|
services.dbus.enable = true;
|
||||||
|
|
||||||
system.activationScripts.systemd = stringAfter [ "groups" ]
|
system.activationScripts.systemd = stringAfter [ "groups" ]
|
||||||
''
|
''
|
||||||
mkdir -m 0755 -p /var/lib/udev
|
mkdir -m 0755 -p /var/lib/udev
|
||||||
|
Loading…
x
Reference in New Issue
Block a user