nixos/alsa: disable OSSEmulation by default

OSS Emulation is considered incomplete so disabling it by default.
Using user level alsa-oss library (nix-env -iA nixos.alsaOss) over
this kernel module is recommended.
This commit is contained in:
bb2020 2020-11-26 01:24:15 +03:00
parent 39a5e2c76b
commit 603e14c793
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!).
'';