Further modularization of machine

This commit is contained in:
2026-03-13 19:45:07 +01:00
parent 07c2856fd4
commit 0f4ce11546
7 changed files with 505 additions and 423 deletions
@@ -0,0 +1,8 @@
{ config, pkgs, ... }:
{
services.dbus = {
enable = true;
package = pkgs.dbus-broker; # Use dbus-broker for performance
};
services.dbus-broker.enable = true; # Explicitly enable the broker
}