From 595e177ea8a4245056117650f351d6a5c4631ba8 Mon Sep 17 00:00:00 2001 From: satr14 Date: Sun, 12 Jul 2026 12:11:55 +0700 Subject: [PATCH] fix throttled dbus fail --- modules/hardware/thinkpad.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/modules/hardware/thinkpad.nix b/modules/hardware/thinkpad.nix index f7e193a..c976402 100644 --- a/modules/hardware/thinkpad.nix +++ b/modules/hardware/thinkpad.nix @@ -28,6 +28,13 @@ "nvme_core.default_ps_max_latency_us=0" ]; }; + nixpkgs.overlays = [ + (final: prev: { + throttled = prev.throttled.overrideAttrs (old: { + pythonPath = (old.pythonPath or []) ++ [ final.python3Packages.dbus-next ]; + }); + }) + ]; hardware.bluetooth = { enable = true; powerOnBoot = false;