11 lines
227 B
Nix
11 lines
227 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
services.dbus-broker = {
|
|
enable = true;
|
|
settings = {
|
|
MaxConnectionsPerUser = 2048; # Increase if you have many D-Bus clients
|
|
LogLevel = "warning"; # Reduce verbosity
|
|
};
|
|
};
|
|
}
|