12 lines
247 B
Nix
12 lines
247 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
#################################
|
|
# System-level DBus service
|
|
#################################
|
|
services.dbus = {
|
|
enable = true;
|
|
dbusPackage = pkgs.dbus-broker; # Correct option in NixOS 26.05
|
|
};
|
|
}
|