mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
cbc176010b
Kodi is a media center software.
16 lines
321 B
Nix
16 lines
321 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
programs.kodi = {
|
|
enable = true;
|
|
package = config.lib.test.mkStubPackage { };
|
|
|
|
settings = { videolibrary.showemptytvshows = "true"; };
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileContent \
|
|
home-files/.kodi/userdata/advancedsettings.xml \
|
|
${./example-settings-expected.xml}
|
|
'';
|
|
}
|