1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-07 22:03:27 +02:00
home-manager/tests/modules/programs/kodi/example-sources.nix

34 lines
610 B
Nix
Raw Normal View History

{ config, ... }:
{
programs.kodi = {
enable = true;
package = config.lib.test.mkStubPackage { };
sources = {
video = {
default = "movies";
source = [
{
name = "videos";
path = "/path/to/videos";
allowsharing = "true";
}
{
name = "movies";
path = "/path/to/movies";
allowsharing = "true";
}
];
};
};
};
nmt.script = ''
assertFileContent \
home-files/.kodi/userdata/sources.xml \
${./example-sources-expected.xml}
'';
}