1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-26 00:18:30 +02:00

kodi: fix syntax error in example

This commit is contained in:
Xyz00777 2022-11-08 22:42:14 +01:00 committed by Robert Helgesson
parent d20e3d070c
commit 6ce3493a3c
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89

View File

@ -131,9 +131,8 @@ in {
type = types.package;
default = pkgs.kodi;
defaultText = literalExpression "pkgs.kodi";
example = literalExpression ''
{ pkgs.kodi.withPackages (exts: [ exts.pvr-iptvsimple ]) }
'';
example = literalExpression
"pkgs.kodi.withPackages (exts: [ exts.pvr-iptvsimple ])";
description = ''
The <literal>kodi</literal> package to use.
Can be used to specify extensions.