2022-04-05 05:48:13 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.services.mpd-discord-rpc;
|
|
|
|
tomlFormat = pkgs.formats.toml { };
|
|
|
|
configFile = tomlFormat.generate "config.toml" cfg.settings;
|
|
|
|
in {
|
|
|
|
meta.maintainers = [ maintainers.kranzes ];
|
|
|
|
|
|
|
|
options.services.mpd-discord-rpc = {
|
|
|
|
enable = mkEnableOption "the mpd-discord-rpc service";
|
|
|
|
|
|
|
|
settings = mkOption {
|
|
|
|
type = tomlFormat.type;
|
|
|
|
default = { };
|
|
|
|
example = literalExpression ''
|
|
|
|
{
|
|
|
|
hosts = [ "localhost:6600" ];
|
|
|
|
format = {
|
|
|
|
details = "$title";
|
|
|
|
state = "On $album by $artist";
|
|
|
|
};
|
|
|
|
}
|
|
|
|
'';
|
|
|
|
description = ''
|
|
|
|
Configuration included in <literal>config.toml</literal>.
|
2022-06-15 15:49:39 +02:00
|
|
|
For available options see <link xlink:href="https://github.com/JakeStanger/mpd-discord-rpc#configuration"/>
|
2022-04-05 05:48:13 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
package = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
default = pkgs.mpd-discord-rpc;
|
|
|
|
defaultText = literalExpression "pkgs.mpd-discord-rpc";
|
|
|
|
description = "mpd-discord-rpc package to use.";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
2022-04-24 16:25:54 +02:00
|
|
|
assertions = [
|
|
|
|
(hm.assertions.assertPlatform "services.mpd-discord-rpc" pkgs
|
|
|
|
platforms.linux)
|
|
|
|
];
|
|
|
|
|
2022-04-05 05:48:13 +02:00
|
|
|
xdg.configFile."discord-rpc/config.toml".source = configFile;
|
|
|
|
|
|
|
|
systemd.user.services.mpd-discord-rpc = {
|
|
|
|
Unit = {
|
|
|
|
Description = "Discord Rich Presence for MPD";
|
|
|
|
Documentation = "https://github.com/JakeStanger/mpd-discord-rpc";
|
|
|
|
After = [ "graphical-session-pre.target" ];
|
2022-12-01 21:49:44 +01:00
|
|
|
PartOf = [ "graphical-session.target" ];
|
2022-04-05 05:48:13 +02:00
|
|
|
};
|
2022-06-26 01:15:50 +02:00
|
|
|
Service = {
|
|
|
|
ExecStart = "${cfg.package}/bin/mpd-discord-rpc";
|
|
|
|
Restart = "on-failure";
|
|
|
|
};
|
2022-04-05 05:48:13 +02:00
|
|
|
Install.WantedBy = [ "graphical-session.target" ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|