Files
my_nixos/home/yaroslav/Aphelion/mpd.nix
T
yaroslav 7850408607 Added various things, returned Aphelion back to functional state now
with zfs

Note: this is probably the first commit with coq-nvim working again,
don't remove uder any circumstances
2025-07-27 16:18:35 +03:00

20 lines
432 B
Nix

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