2019-02-20 16:38:40 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.services.mpdris2;
|
|
|
|
|
|
|
|
toIni = generators.toINI {
|
|
|
|
mkKeyValue = key: value:
|
|
|
|
let
|
2020-02-02 00:39:17 +01:00
|
|
|
value' = if isBool value then
|
|
|
|
(if value then "True" else "False")
|
|
|
|
else
|
|
|
|
toString value;
|
|
|
|
in "${key} = ${value'}";
|
2019-02-20 16:38:40 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
mpdris2Conf = {
|
|
|
|
Connection = {
|
|
|
|
host = cfg.mpd.host;
|
|
|
|
port = cfg.mpd.port;
|
|
|
|
music_dir = cfg.mpd.musicDirectory;
|
2022-04-05 13:12:24 +02:00
|
|
|
} // optionalAttrs (cfg.mpd.password != null) {
|
|
|
|
password = cfg.mpd.password;
|
2019-02-20 16:38:40 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
Bling = {
|
|
|
|
notify = cfg.notifications;
|
|
|
|
mmkeys = cfg.multimediaKeys;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
in {
|
2019-02-20 16:38:40 +01:00
|
|
|
meta.maintainers = [ maintainers.pjones ];
|
|
|
|
|
|
|
|
options.services.mpdris2 = {
|
|
|
|
enable = mkEnableOption "mpDris2 the MPD to MPRIS2 bridge";
|
|
|
|
notifications = mkEnableOption "song change notifications";
|
|
|
|
multimediaKeys = mkEnableOption "multimedia key support";
|
|
|
|
|
|
|
|
package = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
default = pkgs.mpdris2;
|
2021-10-09 11:14:08 +02:00
|
|
|
defaultText = literalExpression "pkgs.mpdris2";
|
2019-02-20 16:38:40 +01:00
|
|
|
description = "The mpDris2 package to use.";
|
|
|
|
};
|
|
|
|
|
|
|
|
mpd = {
|
|
|
|
host = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = config.services.mpd.network.listenAddress;
|
|
|
|
defaultText = "config.services.mpd.network.listenAddress";
|
|
|
|
example = "192.168.1.1";
|
|
|
|
description = "The address where MPD is listening for connections.";
|
|
|
|
};
|
|
|
|
|
|
|
|
port = mkOption {
|
2019-08-19 20:37:48 +02:00
|
|
|
type = types.port;
|
2019-02-20 16:38:40 +01:00
|
|
|
default = config.services.mpd.network.port;
|
|
|
|
defaultText = "config.services.mpd.network.port";
|
|
|
|
description = ''
|
|
|
|
The port number where MPD is listening for connections.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
musicDirectory = mkOption {
|
|
|
|
type = types.nullOr types.path;
|
|
|
|
default = config.services.mpd.musicDirectory;
|
|
|
|
defaultText = "config.services.mpd.musicDirectory";
|
|
|
|
description = ''
|
|
|
|
If set, mpDris2 will use this directory to access music artwork.
|
|
|
|
'';
|
|
|
|
};
|
2022-04-05 13:12:24 +02:00
|
|
|
|
|
|
|
password = mkOption {
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
default = null;
|
|
|
|
description = ''
|
|
|
|
The password to connect to MPD.
|
|
|
|
'';
|
|
|
|
};
|
2019-02-20 16:38:40 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
2021-07-07 23:24:27 +02:00
|
|
|
assertions = [
|
|
|
|
(lib.hm.assertions.assertPlatform "services.mpdris2" pkgs
|
|
|
|
lib.platforms.linux)
|
|
|
|
];
|
2019-02-20 16:38:40 +01:00
|
|
|
|
|
|
|
xdg.configFile."mpDris2/mpDris2.conf".text = toIni mpdris2Conf;
|
|
|
|
|
|
|
|
systemd.user.services.mpdris2 = {
|
2020-02-02 00:39:17 +01:00
|
|
|
Install = { WantedBy = [ "default.target" ]; };
|
2019-11-23 23:22:22 +01:00
|
|
|
|
2019-02-20 16:38:40 +01:00
|
|
|
Unit = {
|
|
|
|
Description = "MPRIS 2 support for MPD";
|
2019-11-23 23:22:22 +01:00
|
|
|
After = [ "mpd.service" ];
|
2019-02-20 16:38:40 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
Service = {
|
|
|
|
Type = "simple";
|
2019-11-23 23:22:22 +01:00
|
|
|
Restart = "on-failure";
|
|
|
|
RestartSec = "5s";
|
2019-02-20 16:38:40 +01:00
|
|
|
ExecStart = "${cfg.package}/bin/mpDris2";
|
2019-11-23 23:22:22 +01:00
|
|
|
BusName = "org.mpris.MediaPlayer2.mpd";
|
2019-02-20 16:38:40 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|