12 lines
240 B
Nix
12 lines
240 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
#################################
|
|
# System-level DBus service
|
|
#################################
|
|
services.dbus = {
|
|
enable = true;
|
|
package = pkgs.dbus-broker; # Use dbus-broker explicitly
|
|
};
|
|
}
|