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:
parent
39a5e2c76b
commit
603e14c793
2 changed files with 6 additions and 1 deletions
|
@ -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>
|
||||
|
||||
|
|
|
@ -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!).
|
||||
'';
|
||||
|
|
Loading…
Reference in a new issue