nixos-config/configs/porani/mpd.nix
2019-12-20 17:54:26 +13:00

11 lines
175 B
Nix

{ config, lib, ... }: {
sound.enable = true;
services.mpd = {
enable = true;
network.listenAddress = "any";
musicDirectory = "/media/music-library";
};
}