mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 05:09:44 +01:00
13 lines
287 B
Nix
13 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
|
|
'';
|
|
}
|