Regenerated

This commit is contained in:
2026-03-24 19:37:18 +00:00
parent 6f6c148a32
commit 58e6b0b5e7
22 changed files with 833 additions and 0 deletions
@@ -0,0 +1,23 @@
{ config, pkgs, ... }:
{
# Enable D-Bus system service
services.dbus = {
enable = true;
# Use dbus-broker instead of classic dbus
dbusPackage = pkgs.dbus-broker;
# Avoid legacy wrappers; dbus-broker handles its own launch helper
# security.wrappers."dbus-daemon-launch-helper" is intentionally omitted
};
# Make sure basic tools are available
environment.systemPackages = [
pkgs.bashInteractive
pkgs.coreutils
];
# Optional: restart D-Bus if other services depend on it
systemd.services."dbus.service".restartIfChanged = true;
}