Files
my_nixos/home/yaroslav/Aphelion/mpd.nix
T

15 lines
285 B
Nix

{ config, pkgs, ... }:
{
services.mpd = {
enable = true;
musicDirectory = /vol/Trash/Music;
network.listenAddress = "any";
extraConfig = ''
audio_output {
type "pipewire"
name "PipeWire Sound Server"
}
'';
};
}