15 lines
323 B
Nix
15 lines
323 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
services.dbus = {
|
|
enable = true;
|
|
package = pkgs.dbus-broker; # Use dbus-broker as the implementation
|
|
};
|
|
|
|
# Configure dbus-broker via its configuration file
|
|
environment.etc."dbus-broker/launch.conf".text = ''
|
|
[General]
|
|
LogLevel=warning
|
|
MaxConnectionsPerUser=2048
|
|
'';
|
|
}
|