1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-07 13:53:27 +02:00
home-manager/tests/modules/services/mopidy/mopidy-scan.nix

14 lines
287 B
Nix

{ config, pkgs, ... }:
{
services.mopidy = {
enable = true;
extensionPackages = [ pkgs.mopidy-local ];
};
nmt.script = ''
assertFileExists home-files/.config/systemd/user/mopidy.service
assertFileExists home-files/.config/systemd/user/mopidy-scan.service
'';
}