nixos/plasma5: use vlc phonon backend by default

This commit is contained in:
Alper Çelik 2023-02-09 13:37:26 +03:00
parent e24aeba89a
commit 0b74f9829f
No known key found for this signature in database
GPG key ID: FA90C0AB738AB873
3 changed files with 12 additions and 2 deletions

View file

@ -914,6 +914,14 @@
(<link linkend="opt-services.fwupd.daemonSettings"><literal>services.fwupd.daemonSettings</literal></link>).
</para>
</listitem>
<listitem>
<para>
<literal>services.xserver.desktopManager.plasma5.phononBackend</literal>
now defaults to vlc according to
<link xlink:href="https://community.kde.org/Distributions/Packaging_Recommendations#Non-Plasma_packages">upstrean
recommendation</link>
</para>
</listitem>
<listitem>
<para>
The <literal>zramSwap</literal> is now implemented with

View file

@ -223,6 +223,8 @@ In addition to numerous new and upgraded packages, this release has the followin
- The `services.fwupd` module now allows arbitrary daemon settings to be configured in a structured manner ([`services.fwupd.daemonSettings`](#opt-services.fwupd.daemonSettings)).
- `services.xserver.desktopManager.plasma5.phononBackend` now defaults to vlc according to [upstrean recommendation](https://community.kde.org/Distributions/Packaging_Recommendations#Non-Plasma_packages)
- The `zramSwap` is now implemented with `zram-generator`, and the option `zramSwap.numDevices` for using ZRAM devices as general purpose ephemeral block devices has been removed.
- As Singularity has renamed to [Apptainer](https://apptainer.org/news/community-announcement-20211130)

View file

@ -90,8 +90,8 @@ in
phononBackend = mkOption {
type = types.enum [ "gstreamer" "vlc" ];
default = "gstreamer";
example = "vlc";
default = "vlc";
example = "gstreamer";
description = lib.mdDoc "Phonon audio backend to install.";
};