aboutsummaryrefslogtreecommitdiff
path: root/nixos/.flake/home/services/mpd.nix
blob: a5a5dc0c1eb89ce1014a39328aae5083f52dd3b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ config, pkgs, ... }:

{
  services.mpd = {
    enable = true;
    musicDirectory = "~/Music";
    extraConfig = ''
    audio_output {
      type "pipewire"
      name "Pipewire"
      mixer_type "hardware"
      enabled "yes"
    }
    '';
  };
}