Merge pull request #93372 from bb2020/oss

nixos/alsa: disable OSSEmulation by default
This commit is contained in:
WORLDofPEACE 2021-01-26 19:39:42 -05:00 committed by GitHub
commit ebc22e9921
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View file

@ -461,6 +461,11 @@ self: super:
mouse section.
</para>
</listitem>
<listitem>
<para>
ALSA OSS emulation (<varname>sound.enableOSSEmulation</varname>) is now disabled by default.
</para>
</listitem>
</itemizedlist>
</section>

View file

@ -32,7 +32,7 @@ in
enableOSSEmulation = mkOption {
type = types.bool;
default = true;
default = false;
description = ''
Whether to enable ALSA OSS emulation (with certain cards sound mixing may not work!).
'';