1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-09-21 13:57:31 +02:00
home-manager/tests/modules/services/mopidy/mopidy-scan.nix
2024-09-15 01:45:42 +02:00

27 lines
522 B
Nix

{ config, pkgs, ... }:
{
services.mopidy = {
enable = true;
extensionPackages = [ pkgs.mopidy-local ];
};
test.stubs = {
mopidy = {
version = "0";
outPath = null;
buildScript = ''
mkdir -p $out/bin
touch $out/bin/mopidy
chmod +x $out/bin/mopidy
'';
};
mopidy-local = { };
};
nmt.script = ''
assertFileExists home-files/.config/systemd/user/mopidy.service
assertFileExists home-files/.config/systemd/user/mopidy-scan.service
'';
}