7850408607
with zfs Note: this is probably the first commit with coq-nvim working again, don't remove uder any circumstances
20 lines
432 B
Nix
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"
|
|
}
|
|
'';
|
|
};
|
|
}
|