stockholm/makefu/2configs/bureautomation/mpd.nix
2018-12-04 13:37:56 +01:00

10 lines
242 B
Nix

{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";
};
}