1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-30 14:11:02 +01:00
home-manager/modules/services/mpd-discord-rpc.nix
Austin Horstman 86402a17b6 treewide: flatten single file modules
Some files don't need nesting and can be root level again to reduce
conflicts with other PRs.

Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
2025-06-23 16:20:26 -05:00

60 lines
1.6 KiB
Nix

{
config,
lib,
pkgs,
...
}:
let
cfg = config.services.mpd-discord-rpc;
tomlFormat = pkgs.formats.toml { };
configFile = tomlFormat.generate "config.toml" cfg.settings;
in
{
meta.maintainers = [ lib.maintainers.kranzes ];
options.services.mpd-discord-rpc = {
enable = lib.mkEnableOption "the mpd-discord-rpc service";
settings = lib.mkOption {
type = tomlFormat.type;
default = { };
example = lib.literalExpression ''
{
hosts = [ "localhost:6600" ];
format = {
details = "$title";
state = "On $album by $artist";
};
}
'';
description = ''
Configuration included in `config.toml`.
For available options see <https://github.com/JakeStanger/mpd-discord-rpc#configuration>
'';
};
package = lib.mkPackageOption pkgs "mpd-discord-rpc" { };
};
config = lib.mkIf cfg.enable {
assertions = [
(lib.hm.assertions.assertPlatform "services.mpd-discord-rpc" pkgs lib.platforms.linux)
];
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.target" ];
PartOf = [ "graphical-session.target" ];
};
Service = {
ExecStart = "${cfg.package}/bin/mpd-discord-rpc";
Restart = "on-failure";
};
Install.WantedBy = [ "graphical-session.target" ];
};
};
}