nixos/dbus: explicitly set homeMode for dbus

Otherwise /run/dbus is created with the wrong permissions.

For some reason our recent changes made /run/dbus be 0700 instead of
0755. This is actually the default of homeMode. So something worked by
accident before?
This commit is contained in:
Julian Stecklina 2023-10-17 12:09:12 +02:00 committed by nikstur
parent 4b128008c5
commit be2a4f37af

View File

@ -95,6 +95,7 @@ in
uid = config.ids.uids.messagebus;
description = "D-Bus system message bus daemon user";
home = homeDir;
homeMode = "0755";
group = "messagebus";
};