From 89716b927ff6a9fad75ac4adc9f5ae52a46afadd Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Sat, 7 Feb 2026 16:39:04 -0800 Subject: [PATCH] nixos: load module-dbus-protocol for PulseAudio DBus support The taffybar audio widget requires PulseAudio's DBus interface (module-dbus-protocol) to read volume/mute state. Without it the widget shows "n/a". Co-Authored-By: Claude Opus 4.6 --- nixos/base.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/base.nix b/nixos/base.nix index 36641a90..8a820bdb 100644 --- a/nixos/base.nix +++ b/nixos/base.nix @@ -41,6 +41,7 @@ makeEnable config "myModules.base" true { # Audio services.pulseaudio.enable = true; + services.pulseaudio.extraConfig = "load-module module-dbus-protocol"; services.pipewire = { enable = false; systemWide = true;