mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
services: pulseaudio-configuration: Set flat-volumes to no.
* gnu/services/sound (pulseaudio-configuration) [daemon-conf]: Disable flat-volumes, which causes unpleasant experiences to users when applications inadvertently max out the system volume (e.g. as in #38172). Signed-off-by: Marius Bakke <mbakke@fastmail.com>
This commit is contained in:
parent
f547426200
commit
f6f9181130
1 changed files with 4 additions and 1 deletions
|
@ -114,7 +114,10 @@ (define-record-type* <pulseaudio-configuration>
|
|||
(client-conf pulseaudio-client-conf
|
||||
(default '()))
|
||||
(daemon-conf pulseaudio-daemon-conf
|
||||
(default '()))
|
||||
;; Flat volumes may cause unpleasant experiences to users
|
||||
;; when applications inadvertently max out the system volume
|
||||
;; (see e.g. <https://bugs.gnu.org/38172>).
|
||||
(default '((flat-volumes . no))))
|
||||
(script-file pulseaudio-script-file
|
||||
(default (file-append pulseaudio "/etc/pulse/default.pa")))
|
||||
(system-script-file pulseaudio-system-script-file
|
||||
|
|
Loading…
Reference in a new issue