From c07db9ae092fbe0b73e870bfb22b80e1a10a6ab1 Mon Sep 17 00:00:00 2001 From: Antoine Viallon Date: Fri, 5 May 2023 11:49:54 +0200 Subject: [PATCH] [Services] Use dbus-broker instead of default dbus implementation Reportedly has higher performance and reliability --- services.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/services.nix b/services.nix index 80ca798..3ac219b 100644 --- a/services.nix +++ b/services.nix @@ -54,6 +54,9 @@ in { startWhenNeeded = true; }; + # Better reliability and performance + services.dbus.implementation = "broker"; + systemd.services."ssh-inhibit-sleep@" = { description = "Inhibit sleep when SSH connections are active"; bindsTo = [ "sshd@%i.service" ];