summaryrefslogtreecommitdiffstats
path: root/mpd.nix
blob: 176600ee155d0d4a3cee655a8fef3513f9dd96c2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{ config, pkgs, ... }:
{
  services.mpd = {
    enable = true;
    musicDirectory = "${config.home.homeDirectory}/Music";
    playlistDirectory = "${config.home.homeDirectory}/.playlists";
    extraConfig = ''
      		      auto_update "yes"
      	      	'';
  };
}