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