1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-02 04:53:33 +02:00
home-manager/modules/services/listenbrainz-mpd.nix
2023-03-22 08:21:11 +01:00

52 lines
1.4 KiB
Nix

{ config, lib, pkgs, ... }:
let
inherit (lib.options) mkEnableOption mkPackageOption mkOption;
inherit (lib.modules) mkIf;
cfg = config.services.listenbrainz-mpd;
tomlFormat = pkgs.formats.toml { };
in {
meta.maintainers = [ lib.maintainers.Scrumplex ];
options.services.listenbrainz-mpd = {
enable = mkEnableOption "listenbrainz-mpd";
package = mkPackageOption pkgs "listenbrainz-mpd" { };
settings = mkOption {
type = tomlFormat.type;
default = { };
description = ''
Configuration for listenbrainz-mpd written to
<filename>$XDG_CONFIG_HOME/listenbrainz-mpd/config.toml</filename>.
'';
example = { submission.tokenFile = "/run/secrets/listenbrainz-mpd"; };
};
};
config = mkIf cfg.enable {
systemd.user.services."listenbrainz-mpd" = {
Unit = {
Description = "ListenBrainz submission client for MPD";
Documentation = "https://codeberg.org/elomatreb/listenbrainz-mpd";
After = [ "mpd.service" ];
Requires = [ "mpd.service" ];
};
Service = {
ExecStart = "${cfg.package}/bin/listenbrainz-mpd";
Restart = "always";
RestartSec = 5;
};
Install.WantedBy = [ "default.target" ];
};
xdg.configFile."listenbrainz-mpd/config.toml" = mkIf (cfg.settings != { }) {
source = tomlFormat.generate "listenbrainz-mpd.toml" cfg.settings;
};
};
}