summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/bureautomation/mpd.nix
blob: 1f5acb357867e3253b894688d623c910715b84b1 (plain)
1
2
3
4
5
6
7
8
9
{lib,pkgs, ... }:

{
  systemd.services."ympd-wbob" = {
    description = "mpd ";
    wantedBy = [ "multi-user.target" ];
    serviceConfig.ExecStart = "${pkgs.ympd}/bin/ympd --host localhost --port 6600 --webport 8866 --user nobody";
  };
}