kodi: add release notes for kodi.withPackages

This commit is contained in:
Aaron Andersen 2021-03-11 19:52:33 -05:00
parent 901b43d439
commit 4769eb4f58

@ -577,6 +577,37 @@ self: super:
for your Kafka version. for your Kafka version.
</para> </para>
</listitem> </listitem>
<listitem>
<para>
The <package>kodi</package> package has been modified to allow concise addon management. Consider
the following configuration from previous releases of NixOS to install <package>kodi</package>,
including the <package>kodiPackages.inputstream-adaptive</package> and <package>kodiPackages.vfs-sftp</package>
addons:
<programlisting>
environment.systemPackages = [
pkgs.kodi
];
nixpkgs.config.kodi = {
enableInputStreamAdaptive = true;
enableVFSSFTP = true;
};
</programlisting>
All Kodi <literal>config</literal> flags have been removed, and as a result the above configuration
should now be written as:
<programlisting>
environment.systemPackages = [
(pkgs.kodi.withPackages (p: with p; [
inputstream-adaptive
vfs-sftp
]))
];
</programlisting>
</para>
</listitem>
</itemizedlist> </itemizedlist>
</section> </section>