about summary refs log tree commit diff
path: root/nixos/modules/services/audio
diff options
context:
space:
mode:
authorLangston Barrett <langston.barrett@gmail.com>2016-09-10 09:23:39 -0700
committerFranz Pletz <fpletz@fnordicwalking.de>2016-09-10 18:23:39 +0200
commit77cedff4e7d697f69c0c81e57d497f105eefc9e9 (patch)
treecd930877e7c8ea7585f6251ba0b490dd5f4492c5 /nixos/modules/services/audio
parent27bc34f1e471991e43df028edc51159b12405120 (diff)
downloadnixlib-77cedff4e7d697f69c0c81e57d497f105eefc9e9.tar
nixlib-77cedff4e7d697f69c0c81e57d497f105eefc9e9.tar.gz
nixlib-77cedff4e7d697f69c0c81e57d497f105eefc9e9.tar.bz2
nixlib-77cedff4e7d697f69c0c81e57d497f105eefc9e9.tar.lz
nixlib-77cedff4e7d697f69c0c81e57d497f105eefc9e9.tar.xz
nixlib-77cedff4e7d697f69c0c81e57d497f105eefc9e9.tar.zst
nixlib-77cedff4e7d697f69c0c81e57d497f105eefc9e9.zip
ympd service: init (#18371)
ympd provides a web ui, it is suitable to be run as a service.
Fixes #17878.

service has no requirements b/c user might be using remote mpd
instance.
Diffstat (limited to 'nixos/modules/services/audio')
-rw-r--r--nixos/modules/services/audio/ympd.nix61
1 files changed, 61 insertions, 0 deletions
diff --git a/nixos/modules/services/audio/ympd.nix b/nixos/modules/services/audio/ympd.nix
new file mode 100644
index 000000000000..fb8b868ed40a
--- /dev/null
+++ b/nixos/modules/services/audio/ympd.nix
@@ -0,0 +1,61 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+let
+  cfg = config.services.ympd;
+in {
+
+  ###### interface
+
+  options = {
+
+    services.ympd = {
+
+      enable = mkOption {
+        type = types.bool;
+        default = false;
+        description = "Whether to enable ympd, the MPD Web GUI.";
+      };
+
+      webPort = mkOption {
+        type = types.string;
+        default = "8080";
+        description = "The port where ympd's web interface will be available.";
+        example = "ssl://8080:/path/to/ssl-private-key.pem";
+      };
+
+      mpd = {
+        host = mkOption {
+          type = types.string;
+          default = "localhost";
+          description = "The host where MPD is listening.";
+          example = "localhost";
+        };
+
+        port = mkOption {
+          type = types.int;
+          default = config.services.mpd.network.port;
+          description = "The port where MPD is listening.";
+          example = 6600;
+        };
+      };
+
+    };
+
+  };
+
+
+  ###### implementation
+
+  config = mkIf cfg.enable {
+
+    systemd.services.ympd = {
+      description = "Standalone MPD Web GUI written in C";
+      wantedBy = [ "multi-user.target" ];
+      serviceConfig.ExecStart = "${pkgs.ympd}/bin/ympd --host ${cfg.mpd.host} --port ${toString cfg.mpd.port} --webport ${cfg.webPort} --user nobody";
+    };
+
+  };
+
+}