aboutsummaryrefslogtreecommitdiff
path: root/users/tdback/modules/mpd/default.nix
blob: 5bf23962f1fec6a87bd90eccf6944b5b3ea4e631 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ pkgs, ... }:
{
  services.mpd = {
    enable = true;
    package = pkgs.unstable.mpd;
    musicDirectory = "~/media/music";
    extraConfig = ''
      log_file               "syslog"
      max_output_buffer_size "16384"
      restore_paused         "yes"
      auto_update            "yes"
      audio_output {
          type        "pulse"
          name        "pulseaudio"
      }
      audio_output {
          type        "fifo"
          name        "Visualizer feed"
          path        "/tmp/mpd.fifo"
          format      "44100:16:2"
      }
    '';
  };

  # Add mpc for controlling mpd.
  home.packages = with pkgs.unstable; [ mpc-cli ];
}