python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / nixos / modules / services / audio / ympd.nix
blob811b81030efcf56b07c8b17a7bcfbd40cf1d9443
1 { config, lib, pkgs, ... }:
3 with lib;
5 let
6   cfg = config.services.ympd;
7 in {
9   ###### interface
11   options = {
13     services.ympd = {
15       enable = mkEnableOption (lib.mdDoc "ympd, the MPD Web GUI");
17       webPort = mkOption {
18         type = types.either types.str types.port; # string for backwards compat
19         default = "8080";
20         description = lib.mdDoc "The port where ympd's web interface will be available.";
21         example = "ssl://8080:/path/to/ssl-private-key.pem";
22       };
24       mpd = {
25         host = mkOption {
26           type = types.str;
27           default = "localhost";
28           description = lib.mdDoc "The host where MPD is listening.";
29         };
31         port = mkOption {
32           type = types.port;
33           default = config.services.mpd.network.port;
34           defaultText = literalExpression "config.services.mpd.network.port";
35           description = lib.mdDoc "The port where MPD is listening.";
36           example = 6600;
37         };
38       };
40     };
42   };
45   ###### implementation
47   config = mkIf cfg.enable {
49     systemd.services.ympd = {
50       description = "Standalone MPD Web GUI written in C";
51       wantedBy = [ "multi-user.target" ];
52       serviceConfig.ExecStart = "${pkgs.ympd}/bin/ympd --host ${cfg.mpd.host} --port ${toString cfg.mpd.port} --webport ${toString cfg.webPort} --user nobody";
53     };
55   };