mpd (no sound yet)

This commit is contained in:
Tristan 2024-02-17 13:53:01 +00:00
parent 128cab7e41
commit a1a0433279
3 changed files with 13 additions and 0 deletions

8
nixos/services/mpd.nix Normal file
View file

@ -0,0 +1,8 @@
{config,...}:
{
services.mpd = {
enable = true;
network.listenAddress = "0.0.0.0";
};
networking.firewall.allowedTCPPorts = [config.services.mpd.network.port];
}