--- /dev/null
+# Extra configuration file for wireplumber
+
+# SPDX-License-Identifier: GPL-3.0-or-later
+# Copyright (C) 2024 Simon Ruderich
+
+
+# Try to prevent stuttering during audio playback; taken from pipewire FAQ
+monitor.alsa.rules = [
+ {
+ matches = [
+ # This matches the value of the 'node.name' property of the node.
+ {
+ node.name = "~alsa_output.*"
+ }
+ ]
+ actions = {
+ # Apply all the desired node specific settings here.
+ update-props = {
+ api.alsa.period-size = 1024
+ api.alsa.headroom = 8192
+ }
+ }
+ }
+]