mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 07:04:17 +00:00
kodi: fix syntax error in example
This commit is contained in:
parent
d20e3d070c
commit
6ce3493a3c
1 changed files with 2 additions and 3 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue