mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 12:23:56 -05:00
18 lines
324 B
Nix
18 lines
324 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
config = lib.mkIf config.ar.home.services.mpd.enable {
|
|
services.mpd = {
|
|
enable = true;
|
|
musicDirectory = config.ar.home.services.mpd.musicDirectory;
|
|
};
|
|
services.mpd-mpris = {
|
|
enable = true;
|
|
mpd.port = config.services.mpd.network.port;
|
|
};
|
|
};
|
|
}
|