mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
16 lines
298 B
Nix
16 lines
298 B
Nix
{
|
|
imports = [ ./kodi-stubs.nix ];
|
|
|
|
programs.kodi = {
|
|
enable = true;
|
|
settings = {
|
|
videolibrary.showemptytvshows = "true";
|
|
};
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileContent \
|
|
home-files/.kodi/userdata/advancedsettings.xml \
|
|
${./example-settings-expected.xml}
|
|
'';
|
|
}
|