mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
17 lines
321 B
Nix
17 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}
|
||
|
'';
|
||
|
}
|