nixos-config/configs/porani/mpd.nix
2019-10-24 02:24:33 +02:00

13 lines
175 B
Nix

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