add mpd on genepi

This commit is contained in:
2025-03-11 18:05:13 +01:00
parent 249ec3fcc4
commit dc695bf687
2 changed files with 25 additions and 0 deletions

View File

@@ -18,6 +18,7 @@
./hardware.nix ./hardware.nix
./immich.nix ./immich.nix
./monitoring ./monitoring
./mpd.nix
./network.nix ./network.nix
./nginx.nix ./nginx.nix
./persistence.nix ./persistence.nix

24
hosts/genepi/mpd.nix Normal file
View File

@@ -0,0 +1,24 @@
{ config, ... }:
{
services.mpd = {
enable = true;
musicDirectory = "/home/rpqt/Media/Music";
extraConfig = ''
audio_output {
type "pulse"
name "Pulse Audio"
}
'';
network.listenAddress = "any";
};
services.pulseaudio.enable = true;
# Workaround: run PulseAudio system-wide so that the mpd user can access it
services.pulseaudio.systemWide = true;
users.users.${config.services.mpd.user}.extraGroups = [ "pulse-access" ];
users.users.rpqt.homeMode = "755";
}