diff options
author | makefu <github@syntax-fehler.de> | 2018-11-05 13:51:28 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2018-11-05 13:51:28 +0100 |
commit | 2487cbc8829b9c81545d1627d4a03b8fed12de01 (patch) | |
tree | 8528c3ed834a6f381b351aae53c38aea36f42b52 /makefu/2configs/deployment/bureautomation/mpd.nix | |
parent | ea3afff61105fd32be1ea658460329aecf061eec (diff) |
ma wbob.r: more automation
Diffstat (limited to 'makefu/2configs/deployment/bureautomation/mpd.nix')
-rw-r--r-- | makefu/2configs/deployment/bureautomation/mpd.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/makefu/2configs/deployment/bureautomation/mpd.nix b/makefu/2configs/deployment/bureautomation/mpd.nix new file mode 100644 index 000000000..1f5acb357 --- /dev/null +++ b/makefu/2configs/deployment/bureautomation/mpd.nix @@ -0,0 +1,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"; + }; +} |