mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
Merge pull request #93372 from bb2020/oss
nixos/alsa: disable OSSEmulation by default
This commit is contained in:
commit
ebc22e9921
2 changed files with 6 additions and 1 deletions
|
@ -461,6 +461,11 @@ self: super:
|
||||||
mouse section.
|
mouse section.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
ALSA OSS emulation (<varname>sound.enableOSSEmulation</varname>) is now disabled by default.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
|
|
@ -32,7 +32,7 @@ in
|
||||||
|
|
||||||
enableOSSEmulation = mkOption {
|
enableOSSEmulation = mkOption {
|
||||||
type = types.bool;
|
type = types.bool;
|
||||||
default = true;
|
default = false;
|
||||||
description = ''
|
description = ''
|
||||||
Whether to enable ALSA OSS emulation (with certain cards sound mixing may not work!).
|
Whether to enable ALSA OSS emulation (with certain cards sound mixing may not work!).
|
||||||
'';
|
'';
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue