8 lines
176 B
Nix
8 lines
176 B
Nix
{config,...}:
|
|
{
|
|
services.mpd = {
|
|
enable = true;
|
|
network.listenAddress = "0.0.0.0";
|
|
};
|
|
networking.firewall.allowedTCPPorts = [config.services.mpd.network.port];
|
|
}
|