aboutsummaryrefslogtreecommitdiff
path: root/modules/music/config.nix
blob: 3e02957644ad8e0117cfaf72b5c0b674e200e5a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ config, ... } :
{
  mopidyHttpPort = 6680;
  mpd = {
    host = "127.0.0.1";
    port = 6600;
    musicDir = "${config.home.homeDirectory}/Downloads/music";
    playlistDir = "${config.home.homeDirectory}/Downloads/music/playlist";
  };
}