summaryrefslogtreecommitdiffstats
path: root/mpd.nix
blob: 6ded4341011b8d768acbe4774f0c97b10ea78a2d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ config, pkgs, ... }:
{
  services.mpd = {
    enable = true;
    musicDirectory = "${config.home.homeDirectory}/Music";
    playlistDirectory = "${config.home.homeDirectory}/.playlists";
    extraConfig = ''
      		      auto_update "yes"
		      audio_output {
			type "pulse"
			name "PipeWire Output"
		      }
      	      	'';
  };
}