stockholm/makefu/2configs/bureautomation/mpd.nix

10 lines
242 B
Nix
Raw Normal View History

2018-11-05 12:51:28 +00:00
{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";
};
}