diff options
author | makefu <github@syntax-fehler.de> | 2018-12-04 13:37:56 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2018-12-04 13:37:56 +0100 |
commit | 1859d6653a12e1bfda9465780610f63da8f5ce69 (patch) | |
tree | 29d90dca3ff45cf73bd1aa3aa0375f8b246293b3 /makefu/2configs/bureautomation/mpd.nix | |
parent | 42e64be38804bd97c65f009e26a3de3af03d07dc (diff) |
ma mv {deployment,}/bureautomation
Diffstat (limited to 'makefu/2configs/bureautomation/mpd.nix')
-rw-r--r-- | makefu/2configs/bureautomation/mpd.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/makefu/2configs/bureautomation/mpd.nix b/makefu/2configs/bureautomation/mpd.nix new file mode 100644 index 000000000..1f5acb357 --- /dev/null +++ b/makefu/2configs/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"; + }; +} |