nixos-config/configs/porani/mpd.nix

13 lines
175 B
Nix
Raw Normal View History

2019-10-24 02:20:38 +02:00
{ config, lib, ... }:
{
sound.enable = true;
services.mpd = {
enable = true;
network.listenAddress = "any";
musicDirectory = "/media/music-library";
};
}