aboutsummaryrefslogtreecommitdiff
path: root/config/mpd/default.nix
blob: 9b78bfb8c0f9c260e9d09585ab883a4371856436 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ pkgs, config, ... }:
{
  home.sessionVariables = {
    MPD_HOST = "/run/user/1000/mpd/socket";
  };
  services.mpd = {
    enable = true;
    network.listenAddress = "any";
    extraConfig = ''
    audio_output {
        type "pulse"
        name "pulse-output"
    }
    '';
  };
}