Skip to content

Commit

Permalink
Merge pull request #215489 from Alper-Celik/master
Browse files Browse the repository at this point in the history
nixos/plasma5: use vlc phonon backend by default
  • Loading branch information
NickCao authored Feb 10, 2023
2 parents 722cdf7 + 0b74f98 commit 4ba33a7
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
8 changes: 8 additions & 0 deletions nixos/doc/manual/from_md/release-notes/rl-2305.section.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions nixos/doc/manual/release-notes/rl-2305.section.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions nixos/modules/services/x11/desktop-managers/plasma5.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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.";
};

Expand Down

0 comments on commit 4ba33a7

Please sign in to comment.